forked from wso2/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
96 lines (88 loc) · 3.44 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
<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.wso2.carbon</groupId>
<artifactId>orbit-parent</artifactId>
<version>4.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>WSO2 Carbon Orbit - Parent Maven Project</name>
<description>orbit-parent</description>
<url>http://wso2.org</url>
<repositories>
<repository>
<id>wso2-nexus</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</releases>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>wso2-maven2-repository</id>
<name>WSO2 Maven2 Repository</name>
<url>scp://dist.wso2.org/home/httpd/dist.wso2.org/maven2/</url>
</repository>
<snapshotRepository>
<id>wso2-maven2-snapshot-repository</id>
<name>WSO2 Maven2 Snapshot Repository</name>
<url>scp://dist.wso2.org/home/httpd/dist.wso2.org/snapshots/maven2/</url>
</snapshotRepository>
</distributionManagement>
<modules>
<module>httpcore/4.3.0-wso2v1</module>
<module>poi-ooxml/3.9.0.wso2v2</module>
<module>poi-ooxml/3.9.0.wso2v3</module>
<module>spring-framework/3.2.9.wso2v1</module>
<module>jdbc-pool/7.0.34.wso2v2</module>
<module>tomcat/7.0.52.wso2v1/</module>
<module>waffle/1.6.wso2v1</module>
<module>disruptor/2.10.4-wso2v2</module>
<module>cassandra-driver/1.0.5.wso2v1</module>
<module>rabbit-mq/3.3.4.wso2v1</module>
<module>transactions-eclipselink/3.9.1.wso2v1</module>
<module>bcprov/1.32.wso2v1</module>
<module>log4j/1.2.17.wso2v1</module>
<module>storm/0.9.2-incubating.wso2v1</module>
<module>disruptor/3.2.1.wso2v1</module>
<module>cassandra-thrift/1.2.13.wso2v4</module>
<module>bsf/3.0.0.wso2v4</module>
<module>lucene/4.10.3-wso2v1</module>
<module>rabbit-mq/3.4.4.wso2v1</module>
</modules>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.1</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<version.tomcat>7.0.34</version.tomcat>
</properties>
</project>