Changeset 5985
- Timestamp:
- 04/08/11 15:31:51 (14 years ago)
- Location:
- branches/OKBJavaConnector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKBJavaConnector/AdministrationService/pom.xml
r5982 r5985 1 <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"> 2 <modelVersion>4.0.0</modelVersion> 3 <parent> 4 <artifactId>OKBJavaConnector</artifactId> 5 <groupId>com.heursticlab.okb</groupId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 8 <groupId>com.heursticlab.okb</groupId> 9 <artifactId>AdministrationService</artifactId> 10 <version>0.0.1-SNAPSHOT</version> 11 <build> 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <parent> 5 <artifactId>OKBJavaConnector</artifactId> 6 <groupId>com.heursticlab.okb</groupId> 7 <version>0.0.1-SNAPSHOT</version> 8 </parent> 9 <groupId>com.heursticlab.okb</groupId> 10 <artifactId>AdministrationService</artifactId> 11 <version>0.0.1-SNAPSHOT</version> 12 <dependencies> 13 14 <dependency> 15 <groupId>com.google.guava</groupId> 16 <artifactId>guava</artifactId> 17 18 <scope>compile</scope> 19 </dependency> 20 <dependency> 21 <groupId>junit</groupId> 22 <artifactId>junit</artifactId> 23 24 <scope>test</scope> 25 </dependency> 26 </dependencies> 27 <build> 12 28 <plugins> 13 29 <plugin> -
branches/OKBJavaConnector/pom.xml
r5982 r5985 6 6 <version>0.0.1-SNAPSHOT</version> 7 7 <packaging>pom</packaging> 8 <dependencies> 9 <dependency> 10 <groupId>com.google.guava</groupId> 11 <artifactId>guava</artifactId> 12 <version>r08</version> 13 <scope>compile</scope> 14 </dependency> 15 </dependencies> 8 <dependencyManagement> 9 <dependencies> 10 <dependency> 11 <groupId>com.google.guava</groupId> 12 <artifactId>guava</artifactId> 13 <version>r08</version> 14 <scope>compile</scope> 15 </dependency> 16 <dependency> 17 <groupId>junit</groupId> 18 <artifactId>junit</artifactId> 19 <version>4.8.2</version> 20 <scope>test</scope> 21 </dependency> 22 </dependencies> 23 24 </dependencyManagement> 25 16 26 <build> 17 27 <plugins>
Note: See TracChangeset
for help on using the changeset viewer.