forked from sksamuel/camelwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
174 lines (155 loc) · 7.23 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?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>
<groupId>org.camelwatch</groupId>
<artifactId>camelwatch</artifactId>
<version>0.5-SNAPSHOT</version>
<modules>
<module>camelwatch-api</module>
<module>camelwatch-web</module>
</modules>
<packaging>pom</packaging>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.plugin.jar.version>2.4</maven.plugin.jar.version>
<maven.plugin.war.version>2.2</maven.plugin.war.version>
<maven.plugin.resources.version>2.5</maven.plugin.resources.version>
<maven.plugin.compiler.version>2.5.1</maven.plugin.compiler.version>
<maven.plugin.surefire.version>2.12</maven.plugin.surefire.version>
<maven.plugin.dependency.version>2.4</maven.plugin.dependency.version>
<maven.plugin.cargo.version>1.2.2</maven.plugin.cargo.version>
<maven.plugin.scala.version>3.0.2</maven.plugin.scala.version>
<maven.plugin.release.version>2.2</maven.plugin.release.version>
<compiler.version.source>1.6</compiler.version.source>
<compiler.version.target>1.6</compiler.version.target>
<commons.httpcore.version>4.2.1</commons.httpcore.version>
<commons.httpclient.version>4.2</commons.httpclient.version>
<commons.lang.version>2.6</commons.lang.version>
<commons.dbcp.version>1.4</commons.dbcp.version>
<commons.io.version>2.3</commons.io.version>
<commons.collections.version>3.2.1</commons.collections.version>
<commons.logging.version>1.1.1</commons.logging.version>
<commons.beanutils.version>1.8.3</commons.beanutils.version>
<commons.fileupload.version>1.2.2</commons.fileupload.version>
<commons.sanselan.version>0.97-incubator</commons.sanselan.version>
<hibernate.core.version>3.6.7.Final</hibernate.core.version>
<hibernate.validator.version>4.3.0.Final</hibernate.validator.version>
<hibernate.jpa.version>1.0.1.Final</hibernate.jpa.version>
<spring.version>3.1.1.RELEASE</spring.version>
<spring.security.version>3.1.0.RELEASE</spring.security.version>
<spring.social.version>1.0.2.RELEASE</spring.social.version>
<spring.social.facebook.version>1.0.1.RELEASE</spring.social.facebook.version>
<spring.social.twitter.version>1.0.2.RELEASE</spring.social.twitter.version>
<googledao.version>1.1.0</googledao.version>
<cglib.version>2.2.2</cglib.version>
<mysql.version>5.1.20</mysql.version>
<jdom.version>1.1.3</jdom.version>
<jodatime.version>2.1</jodatime.version>
<activemq.version>5.6.0</activemq.version>
<jersey.version>1.12</jersey.version>
<jackson.version>1.9.7</jackson.version>
<google.guava.version>12.0</google.guava.version>
<junit.version>4.10</junit.version>
<xmlunit.version>1.3</xmlunit.version>
<mockito.version>1.9.0</mockito.version>
<log4j.version>1.2.17</log4j.version>
<slf4j.version>1.6.6</slf4j.version>
<ehcache.version>2.5.2</ehcache.version>
<saxon.version>9.4</saxon.version>
<classloaderleak.version>1.3.1</classloaderleak.version>
<javax.servlet.version>2.5</javax.servlet.version>
<javax.jsp.version>2.1</javax.jsp.version>
<javax.mail.version>1.4.5</javax.mail.version>
<velocity.version>1.7</velocity.version>
<velocity.tools.version>2.0</velocity.tools.version>
<javacsv.version>2.0</javacsv.version>
<scala.version>2.9.2</scala.version>
</properties>
<repositories>
<repository>
<id>ja-sig</id>
<url>http://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<url>http://download.java.net/maven/2/</url>
</repository>
<repository>
<id>jboss</id>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>
<!-- The required properties should be defined in the settings.xml -->
<distributionManagement>
<repository>
<id>camelwatch</id>
<url>${camelwatch.releases.url}</url>
<name>Releases</name>
</repository>
<snapshotRepository>
<id>camelwatch</id>
<url>${camelwatch.snapshots.url}</url>
<name>Snapshots</name>
</snapshotRepository>
</distributionManagement>
<build>
<finalName>camelwatch</finalName>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.plugin.jar.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.plugin.compiler.version}</version>
<configuration>
<source>${compiler.version.source}</source>
<target>${compiler.version.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${maven.plugin.war.version}</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.plugin.resources.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>pdf</nonFilteredFileExtension>
<nonFilteredFileExtension>swf</nonFilteredFileExtension>
<nonFilteredFileExtension>jpeg</nonFilteredFileExtension>
<nonFilteredFileExtension>png</nonFilteredFileExtension>
<nonFilteredFileExtension>ks</nonFilteredFileExtension>
<nonFilteredFileExtension>jks</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
</build>
</project>