Project:
The Chemistry Development Kit
Code Location:
git://github.com/egonw/cdk.gitmaster
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<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>org.openscience.cdk</groupId> <artifactId>cdk${dist}</artifactId> <version>1.3.6</version> <packaging>jar</packaging> <name>cdk</name> <url>cdk.sourceforge.net</url> <distributionManagement> <repository> <id>ambit-plovdiv</id> <url>http://ambit.uni-plovdiv.bg:8083/nexus/content/repositories/thirdparty</url> </repository> </distributionManagement> <inceptionYear>2000</inceptionYear> <build> <plugins> <plugin> <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> <artifactId>maven-antrun-extended-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <attachArtifact file="dist/jar/cdk${dist}-${project.version}.jar" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </pluginRepository> </pluginRepositories> <profiles> <profile> <id>pure</id> <properties> <dist>-pure</dist> </properties> <activation> <activeByDefault>false</activeByDefault> </activation> </profile> <profile> <id>optional</id> <properties> <dist>-optional</dist> </properties> <activation> <activeByDefault>false</activeByDefault> </activation> </profile> <profile> <id>large</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <dist></dist> </properties> </profile> <profile> <id>test-large</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <dist>-test-large</dist> </properties> </profile> </profiles> </project>
