-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
98 lines (94 loc) · 2.95 KB
/
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
<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.topicmapslab.tmql4j</groupId>
<artifactId>tmql4j-parent</artifactId>
<version>3.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TMQL4J Parent Project</name>
<properties>
<osgi.version>3.2.0</osgi.version>
<qualified.osgi.version>${osgi.version}.${maven.build.timestamp}</qualified.osgi.version>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
<resources>
<resource>
<directory>META-INF</directory>
<targetPath>${project.build.directory}/classes/META-INF</targetPath>
</resource>
<resource>
<directory>OSGI-INF</directory>
<targetPath>${project.build.directory}/classes/OSGI-INF</targetPath>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>tmlab</id>
<url>http://maven.topicmapslab.de/public</url>
</repository>
<repository>
<id>tmapi</id>
<url>http://www.tmapi.org/maven-repository/</url>
</repository>
<repository>
<id>tmapi-snap</id>
<name>http://www.tmapi.org/maven-repository/snapshots/</name>
<url>http://www.tmapi.org/maven-repository/snapshots/</url>
</repository>
<repository>
<id>ontopia</id>
<url>http://ontopia.googlecode.com/svn/maven-repository/</url>
</repository>
<repository>
<id>ontopia snapshot</id>
<url>http://ontopia.googlecode.com/svn/maven-snapshot-repository/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>topicmapslab-public</id>
<name>Topic Maps Lab Repositiory</name>
<url>scp://atlantis.tm.informatik.uni-leipzig.de/disk/localhome/maven/webdir/maven.topicmapslab.de/public/public</url>
</repository>
</distributionManagement>
<modules>
<module>tmql4j-core</module>
<module>tmql4j-path</module>
<module>tmql4j-select</module>
<module>tmql4j-flwr</module>
<module>tmql4j-insert</module>
<module>tmql4j-update</module>
<module>tmql4j-delete</module>
<module>tmql4j-merge</module>
<module>tmql4j-draft2010</module>
<module>tmql4j-majortom</module>
<module>tmql4j-template</module>
<module>tmql4j-draft2007-pack</module>
<module>tmql4j-tolog</module>
<module>tmql4j-draft2011</module>
<module>tmql4j-path-sql</module>
</modules>
</project>