Skip to content

Commit

Permalink
Restored the pom file for annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jan 2, 2016
1 parent be91727 commit 2c4b04e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions base/annotation/pom.xml
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>

<parent>
<artifactId>cdk-base</artifactId>
<groupId>org.openscience.cdk</groupId>
<version>1.5.13-SNAPSHOT</version>
</parent>

<artifactId>cdk-annotation</artifactId>

<name>cdk-annotation</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions base/pom.xml
Expand Up @@ -11,6 +11,7 @@
</parent>
<name>cdk-base</name>
<modules>
<module>annotation</module>
<module>interfaces</module>
<module>atomtype</module>
<module>core</module>
Expand Down

0 comments on commit 2c4b04e

Please sign in to comment.