Skip to content

Commit

Permalink
modify pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
58code committed Sep 26, 2012
1 parent 0d8c09f commit 4c84011
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
18 changes: 11 additions & 7 deletions client/java/client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.client</artifactId>
<version>1.0.0</version>
<name>gaea.client</name>


<repositories>
<repository>
<id>58code-maven-repository</id>
<url>https://raw.github.com/58code/maven-repository/master</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>commons-logging</groupId>
Expand All @@ -14,13 +20,13 @@
</dependency>

<dependency>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.protocol</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.serializer</artifactId>
<version>1.0.0</version>
</dependency>
Expand All @@ -32,7 +38,6 @@
<version>4.8</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand All @@ -42,7 +47,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- <version>0.0.1</version> -->
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand Down
13 changes: 10 additions & 3 deletions protocol/pom.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.protocol</artifactId>
<version>1.0.0</version>
<name>gaea.protocol</name>

<repositories>
<repository>
<id>58code-maven-repository</id>
<url>https://raw.github.com/58code/maven-repository/master</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.serializer</artifactId>
<version>1.0.0</version>
</dependency>
Expand All @@ -20,6 +26,7 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
3 changes: 1 addition & 2 deletions serializer/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bj58.spat</groupId>
<groupId>com.bj58.spat.gaea</groupId>
<artifactId>com.bj58.spat.gaea.serializer</artifactId>
<version>1.0.0</version>
<name>gaea.serializer</name>

<dependencies>
<dependency>
Expand Down

0 comments on commit 4c84011

Please sign in to comment.