/[projects]/dao/DaoAdresseVedligehold/pom.xml
ViewVC logotype

Annotation of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2878 - (hide annotations) (download) (as text)
Sat Jan 30 14:05:53 2016 UTC (8 years, 4 months ago) by torben
File MIME type: text/xml
File size: 6323 byte(s)
WIP: Merge AfstandAndenRute(FulddaekningWorker) into this project
1 torben 2798 <?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>dk.daoas</groupId>
5     <artifactId>DaoAdresseVedligehold</artifactId>
6     <version>1.0</version>
7     <packaging>war</packaging>
8     <scm>
9     <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseVedligehold</connection>
10     <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseVedligehold</developerConnection>
11     <tag>HEAD</tag>
12     <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
13     </scm>
14     <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16     </properties>
17     <build>
18    
19     <plugins>
20     <plugin>
21     <groupId>org.apache.maven.plugins</groupId>
22     <artifactId>maven-compiler-plugin</artifactId>
23     <version>3.1</version>
24     <configuration>
25     <source>1.7</source>
26     <target>1.7</target>
27     <showWarnings>true</showWarnings>
28     <showDeprecation>true</showDeprecation>
29    
30     <!-- be strict regarding warnings -->
31     <compilerArguments>
32     <Werror />
33     <!-- <Xlint:all />-->
34     </compilerArguments>
35    
36     </configuration>
37     <!--Do NOT show depreciation in test compile -->
38     <executions>
39     <execution>
40     <id>default-testCompile</id>
41     <phase>test-compile</phase>
42     <configuration>
43     <showDeprecation>false</showDeprecation>
44     </configuration>
45     <goals>
46     <goal>testCompile</goal>
47     </goals>
48     </execution>
49     </executions>
50     </plugin>
51     <!-- <plugin>
52     <groupId>org.codehaus.mojo</groupId>
53     <artifactId>buildnumber-maven-plugin</artifactId>
54     <version>1.3</version>
55     <executions>
56     <execution>
57     <phase>validate</phase>
58     <goals>
59     <goal>create</goal>
60     </goals>
61     </execution>
62     </executions>
63     <configuration>
64     <doCheck>false</doCheck>
65     <doUpdate>true</doUpdate>
66     </configuration>
67     </plugin>
68     -->
69    
70     <plugin>
71     <groupId>org.apache.maven.plugins</groupId>
72     <artifactId>maven-war-plugin</artifactId>
73     <version>2.6</version>
74     <configuration>
75     <archive>
76     <manifestEntries>
77     <SCM-Revision>${prefix.revision}</SCM-Revision>
78     <Build-Time>${maven.build.timestamp}</Build-Time>
79     </manifestEntries>
80     </archive>
81     </configuration>
82     </plugin>
83     <plugin>
84     <groupId>org.codehaus.mojo</groupId>
85     <artifactId>findbugs-maven-plugin</artifactId>
86     <version>3.0.0</version>
87     </plugin>
88     </plugins>
89     </build>
90    
91     <dependencies>
92     <dependency>
93     <groupId>javax.servlet</groupId>
94     <artifactId>javax.servlet-api</artifactId>
95     <version>3.0.1</version>
96     <scope>provided</scope>
97     </dependency>
98    
99     <dependency>
100     <groupId>org.apache.commons</groupId>
101     <artifactId>commons-lang3</artifactId>
102     <version>3.3.2</version>
103     </dependency>
104     <dependency>
105 torben 2838 <groupId>commons-fileupload</groupId>
106     <artifactId>commons-fileupload</artifactId>
107     <version>1.3.1</version>
108     </dependency>
109 torben 2871 <!--
110 torben 2798 <dependency>
111     <groupId>dk.thoerup</groupId>
112     <artifactId>CircuitBreaker</artifactId>
113     <version>1.1.1</version>
114     </dependency>
115 torben 2878 -->
116    
117 torben 2798 <dependency>
118     <groupId>dk.thoerup</groupId>
119     <artifactId>WebConfig</artifactId>
120     <version>1.0</version>
121     </dependency>
122 torben 2878
123 torben 2872
124 torben 2798 <dependency>
125     <groupId>com.google.code.gson</groupId>
126     <artifactId>gson</artifactId>
127     <version>2.3.1</version>
128     </dependency>
129 torben 2872
130 torben 2798 <dependency>
131     <groupId>com.google.guava</groupId>
132     <artifactId>guava</artifactId>
133     <version>18.0</version>
134     </dependency>
135    
136     <dependency>
137     <groupId>com.sun.mail</groupId>
138     <artifactId>javax.mail</artifactId>
139     <version>1.4.5</version>
140     </dependency>
141    
142 torben 2878 <!-- contains ags.utils.dataStructures.trees.thirdGenKD -->
143     <dependency>
144     <groupId>com.nitayjoffe.thirdparty.net.robowiki.knn</groupId>
145     <artifactId>knn-benchmark</artifactId>
146     <version>0.1</version>
147     </dependency>
148 torben 2798
149 torben 2878
150    
151 torben 2798 <!-- webjars -->
152     <dependency>
153     <groupId>org.webjars</groupId>
154     <artifactId>jquery</artifactId>
155     <version>2.1.4</version>
156     </dependency>
157     <dependency>
158     <groupId>org.webjars</groupId>
159     <artifactId>bootstrap</artifactId>
160     <version>3.3.5</version>
161     </dependency>
162     <dependency>
163     <groupId>org.webjars</groupId>
164     <artifactId>chartjs</artifactId>
165     <version>1.0.2</version>
166     </dependency>
167    
168 torben 2878
169 torben 2838 <dependency>
170     <groupId>org.webjars.bower</groupId>
171     <artifactId>bootstrap-fileinput</artifactId>
172     <version>4.2.7</version>
173     </dependency>
174 torben 2864
175 torben 2878 <!-- for @SuppressFBWarning annotation -->
176 torben 2864 <dependency>
177     <groupId>com.google.code.findbugs</groupId>
178     <artifactId>annotations</artifactId>
179     <version>3.0.1u2</version>
180     <scope>provided</scope>
181     </dependency>
182 torben 2838
183 torben 2798 <!-- test dependencies -->
184     <dependency>
185     <groupId>junit</groupId>
186     <artifactId>junit</artifactId>
187     <version>4.12</version>
188     <scope>test</scope>
189     </dependency>
190    
191     </dependencies>
192     <reporting>
193     <plugins>
194     <!-- Normally, we take off the dependency report, saves time. -->
195     <plugin>
196     <groupId>org.apache.maven.plugins</groupId>
197     <artifactId>maven-project-info-reports-plugin</artifactId>
198     <version>2.7</version>
199     <configuration>
200     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
201     </configuration>
202     </plugin>
203     <plugin>
204     <groupId>org.codehaus.mojo</groupId>
205     <artifactId>findbugs-maven-plugin</artifactId>
206     <version>3.0.1</version>
207     </plugin>
208     </plugins>
209     </reporting>
210     <repositories>
211     <repository>
212     <id>hoerup-releases</id>
213     <name>hoerup-releases</name>
214     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
215     </repository>
216     </repositories>
217     </project>

  ViewVC Help
Powered by ViewVC 1.1.20