Remote Agents implementation: update dependecies
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 27 Jan 2014 22:22:54 +0000 (23:22 +0100)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 27 Jan 2014 22:22:54 +0000 (23:22 +0100)
RemoteAgents/remote-agents-batchapp/pom.xml
RemoteAgents/remote-agents-main/pom.xml [deleted file]
RemoteAgents/remote-agents-services-implementation/pom.xml
RemoteAgents/remote-agents-services-interfaces/pom.xml
RemoteAgents/remote-agents/pom.xml [new file with mode: 0644]

index 6045a90..64df0fe 100644 (file)
       <groupId>org.springframework.ws</groupId>
       <artifactId>spring-ws-core</artifactId>
     </dependency>
+    <dependency>
+      <groupId>com.github.briandilley.jsonrpc4j</groupId>
+      <artifactId>jsonrpc4j</artifactId>
+    </dependency>
     <!--  
     <dependency>
       <groupId>javax</groupId>
diff --git a/RemoteAgents/remote-agents-main/pom.xml b/RemoteAgents/remote-agents-main/pom.xml
deleted file mode 100644 (file)
index 55c4e4e..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-<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/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>de.remote.agents</groupId>
-  <artifactId>remote-agents</artifactId>
-  <packaging>pom</packaging>
-  <version>1.0-SNAPSHOT</version>
-  <name>remote-agents</name>
-  <url>http://gumartinm.name</url>
-  <description>Remote Agents Implementation</description>
-  <organization>
-    <name>Gustavo Martin Morcuende</name>
-    <url>http://www.gumartinm.name</url>
-  </organization>
-  <scm>
-    <developerConnection>scm:git:http://git.gumartinm.name/RemoteAgents</developerConnection>
-    <url>http://git.gumartinm.name/RemoteAgents</url>
-  </scm>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <spring.version>3.2.4.RELEASE</spring.version>
-    <spring.ws.version>2.1.4.RELEASE</spring.ws.version>
-  </properties>
-  <dependencies>
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-context</artifactId>
-      <version>${spring.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-      <version>1.7.5</version>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-      <version>1.7.5</version>
-    </dependency>
-    <dependency>
-      <groupId>cglib</groupId>
-      <artifactId>cglib</artifactId>
-      <version>2.2.2</version>
-    </dependency>
-  </dependencies>
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>org.springframework.ws</groupId>
-        <artifactId>spring-ws-core</artifactId>
-        <version>${spring.ws.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.springframework</groupId>
-        <artifactId>spring-jdbc</artifactId>
-        <version>${spring.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>com.mchange</groupId>
-        <artifactId>c3p0</artifactId>
-        <version>0.9.2.1</version>
-      </dependency>
-      <dependency>
-        <groupId>com.github.briandilley.jsonrpc4j</groupId>
-        <artifactId>jsonrpc4j</artifactId>
-        <version>1.0</version>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.1</version>
-        <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
-          <encoding>${project.build.sourceEncoding}</encoding>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-resources-plugin</artifactId>
-        <version>2.6</version>
-        <configuration>
-          <encoding>${project.build.sourceEncoding}</encoding>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jar-plugin</artifactId>
-        <version>2.4</version>
-        <configuration>
-          <archive>
-            <manifestEntries>
-              <Specification-Title>${project.description}</Specification-Title>
-              <Specification-Version>${project.version}</Specification-Version>
-              <Specification-Vendor>${project.organization.name}</Specification-Vendor>
-              <Implementation-Title>${project.description}</Implementation-Title>
-              <Implementation-Version>${project.version}</Implementation-Version>
-              <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
-            </manifestEntries>
-          </archive>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-</project>
index a5854f3..1df1d9d 100644 (file)
   <url>http://gumartinm.name</url>
   <dependencies>
     <dependency>
-      <groupId>com.github.briandilley.jsonrpc4j</groupId>
-      <artifactId>jsonrpc4j</artifactId>
-    </dependency>
-    <dependency>
       <groupId>de.remote.agents</groupId>
       <artifactId>remote-agents-services-interfaces</artifactId>
       <version>${project.version}</version>
index 73df4e1..849a360 100644 (file)
@@ -12,9 +12,5 @@
   <name>remote-agents-services-interfaces</name>
   <url>http://gumartinm.name</url>
   <dependencies>
-    <dependency>
-      <groupId>com.github.briandilley.jsonrpc4j</groupId>
-      <artifactId>jsonrpc4j</artifactId>
-    </dependency>
   </dependencies>
 </project>
diff --git a/RemoteAgents/remote-agents/pom.xml b/RemoteAgents/remote-agents/pom.xml
new file mode 100644 (file)
index 0000000..55c4e4e
--- /dev/null
@@ -0,0 +1,110 @@
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>de.remote.agents</groupId>
+  <artifactId>remote-agents</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0-SNAPSHOT</version>
+  <name>remote-agents</name>
+  <url>http://gumartinm.name</url>
+  <description>Remote Agents Implementation</description>
+  <organization>
+    <name>Gustavo Martin Morcuende</name>
+    <url>http://www.gumartinm.name</url>
+  </organization>
+  <scm>
+    <developerConnection>scm:git:http://git.gumartinm.name/RemoteAgents</developerConnection>
+    <url>http://git.gumartinm.name/RemoteAgents</url>
+  </scm>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <spring.version>3.2.4.RELEASE</spring.version>
+    <spring.ws.version>2.1.4.RELEASE</spring.ws.version>
+  </properties>
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>${spring.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.5</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.7.5</version>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib</artifactId>
+      <version>2.2.2</version>
+    </dependency>
+  </dependencies>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.springframework.ws</groupId>
+        <artifactId>spring-ws-core</artifactId>
+        <version>${spring.ws.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.springframework</groupId>
+        <artifactId>spring-jdbc</artifactId>
+        <version>${spring.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.mchange</groupId>
+        <artifactId>c3p0</artifactId>
+        <version>0.9.2.1</version>
+      </dependency>
+      <dependency>
+        <groupId>com.github.briandilley.jsonrpc4j</groupId>
+        <artifactId>jsonrpc4j</artifactId>
+        <version>1.0</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.7</source>
+          <target>1.7</target>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <version>2.6</version>
+        <configuration>
+          <encoding>${project.build.sourceEncoding}</encoding>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>${project.description}</Specification-Title>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>${project.organization.name}</Specification-Vendor>
+              <Implementation-Title>${project.description}</Implementation-Title>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>