comparison pom.xml @ 421:0ec07c73d4bb

Added basic config files.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 04 Feb 2015 16:01:53 +0100
parents
children 5fe37b00ed41
comparison
equal deleted inserted replaced
420:c7e86351d6ba 421:0ec07c73d4bb
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <name>Lada Server</name>
7
8 <groupId>de.intevation</groupId>
9 <artifactId>lada-basis</artifactId>
10 <version>1.0.1</version>
11 <packaging>war</packaging>
12 <parent>
13 <groupId>org.jboss</groupId>
14 <artifactId>jboss-parent</artifactId>
15 <version>14</version>
16 <relativePath />
17 </parent>
18
19 <properties>
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
22 <!-- JBoss dependency versions -->
23 <version.wildfly.maven.plugin>1.0.2.Final</version.wildfly.maven.plugin>
24 <version.jboss.bom>8.2.1.Final</version.jboss.bom>
25 <version.wildfly>8.2.Final</version.wildfly>
26 <version.arquillian.container>8.0.0.Final</version.arquillian.container>
27 <!-- other plugin versions -->
28 <version.compiler.plugin>3.1</version.compiler.plugin>
29 <version.ear.plugin>2.6</version.ear.plugin>
30 <version.ejb.plugin>2.3</version.ejb.plugin>
31 <version.surefire.plugin>2.16</version.surefire.plugin>
32 <version.war.plugin>2.5</version.war.plugin>
33 <!-- maven-compiler-plugin -->
34 <maven.compiler.target>1.7</maven.compiler.target>
35 <maven.compiler.source>1.7</maven.compiler.source>
36 </properties>
37
38
39 <dependencyManagement>
40 <dependencies>
41 <dependency>
42 <groupId>org.wildfly.bom</groupId>
43 <artifactId>jboss-javaee-7.0-with-tools</artifactId>
44 <version>${version.jboss.bom}</version>
45 <type>pom</type>
46 <scope>import</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.wildfly.bom</groupId>
50 <artifactId>jboss-javaee-7.0-with-hibernate</artifactId>
51 <version>${version.jboss.bom}</version>
52 <type>pom</type>
53 <scope>import</scope>
54 </dependency>
55 </dependencies>
56 </dependencyManagement>
57
58 <dependencies>
59 <dependency>
60 <groupId>javax.enterprise</groupId>
61 <artifactId>cdi-api</artifactId>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.jboss.spec.javax.annotation</groupId>
66 <artifactId>jboss-annotations-api_1.2_spec</artifactId>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
70 <groupId>javax.ws.rs</groupId>
71 <artifactId>jsr311-api</artifactId>
72 <version>1.1.1</version>
73 </dependency>
74 <dependency>
75 <groupId>org.jboss.spec.javax.json</groupId>
76 <artifactId>jboss-json-api_1.0_spec</artifactId>
77 <version>1.0.0.Final</version>
78 </dependency>
79 <dependency>
80 <groupId>log4j</groupId>
81 <artifactId>log4j</artifactId>
82 <version>1.2.17</version>
83 </dependency>
84 <dependency>
85 <groupId>org.hibernate.javax.persistence</groupId>
86 <artifactId>hibernate-jpa-2.1-api</artifactId>
87 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.hibernate</groupId>
91 <artifactId>hibernate-entitymanager</artifactId>
92 <version>4.3.7.Final</version>
93 </dependency>
94 <dependency>
95 <groupId>org.jboss.spec.javax.ejb</groupId>
96 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
97 <scope>provided</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.hibernate</groupId>
101 <artifactId>hibernate-validator</artifactId>
102 <scope>provided</scope>
103 <exclusions>
104 <exclusion>
105 <groupId>org.slf4j</groupId>
106 <artifactId>slf4j-api</artifactId>
107 </exclusion>
108 </exclusions>
109 </dependency>
110 <dependency>
111 <groupId>org.hibernate</groupId>
112 <artifactId>hibernate-jpamodelgen</artifactId>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.hibernate</groupId>
117 <artifactId>hibernate-validator-annotation-processor</artifactId>
118 <scope>provided</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.hibernate</groupId>
122 <artifactId>hibernate-core</artifactId>
123 <scope>provided</scope>
124 </dependency>
125
126 <dependency>
127 <groupId>org.hibernate</groupId>
128 <artifactId>hibernate-spatial</artifactId>
129 <version>4.3</version>
130 </dependency>
131 <dependency>
132 <groupId>commons-io</groupId>
133 <artifactId>commons-io</artifactId>
134 <version>2.0.1</version>
135 </dependency>
136 </dependencies>
137
138 <build>
139 <finalName>${project.artifactId}</finalName>
140 <plugins>
141 <plugin>
142 <artifactId>maven-compiler-plugin</artifactId>
143 <configuration>
144 <source>${maven.compiler.source}</source>
145 <target>${maven.compiler.target}</target>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.wildfly.plugins</groupId>
150 <artifactId>wildfly-maven-plugin</artifactId>
151 <version>1.0.2.Final</version>
152 </plugin>
153 </plugins>
154 </build>
155
156 <profiles>
157 <profile>
158 <id>default</id>
159 <activation>
160 <activeByDefault>true</activeByDefault>
161 </activation>
162 <build>
163 </build>
164 </profile>
165
166 <profile>
167 <id>remote</id>
168 <build>
169 <plugins>
170 <plugin>
171 <groupId>org.wildfly.plugins</groupId>
172 <artifactId>wildfly-maven-plugin</artifactId>
173 <configuration>
174 <hostname>localhost</hostname>
175 <port>9990</port>
176 <username>admin</username>
177 <password>secret</password>
178 </configuration>
179 <executions>
180 <execution>
181 <id>deploy-jar</id>
182 <phase>install</phase>
183 <goals>
184 <goal>deploy</goal>
185 </goals>
186 </execution>
187 </executions>
188 </plugin>
189 </plugins>
190 </build>
191 </profile>
192 </profiles>
193 <repositories>
194 <repository>
195 <id>OSGEO GeoTools repo</id>
196 <url>http://download.osgeo.org/webdav/geotools</url>
197 </repository>
198 <repository>
199 <id>Hibernate Spatial repo</id>
200 <url>http://www.hibernatespatial.org/repository</url>
201 </repository>
202 </repositories>
203 </project>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)