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

Diff of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2481 by torben, Mon Mar 23 14:33:52 2015 UTC revision 2606 by torben, Tue Jul 14 08:40:09 2015 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="UTF-8"?>  <?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"  <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          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0    <modelVersion>4.0.0</modelVersion>
4                        http://maven.apache.org/xsd/maven-4.0.0.xsd">    <groupId>dk.daoas</groupId>
5      <artifactId>DaoAdresseService</artifactId>
6          <modelVersion>4.0.0</modelVersion>    <version>1.0</version>
7          <groupId>dk.daoas</groupId>    <packaging>war</packaging>
8          <artifactId>DaoAdresseService</artifactId>  
9          <version>1.0</version>    <scm>
10        <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</connection>
11          <packaging>war</packaging>      <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</developerConnection>
12        <tag>HEAD</tag>
13          <properties>      <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
14                  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    </scm>
15          </properties>  
16    
17          <build>    <properties>
18                  <plugins>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19                          <plugin>    </properties>
20                                  <groupId>org.apache.maven.plugins</groupId>  
21                                  <artifactId>maven-compiler-plugin</artifactId>  
22                                  <version>3.1</version>    <build>
23                                  <configuration>      <plugins>
24                                          <source>1.7</source>        <plugin>
25                                          <target>1.7</target>          <groupId>org.apache.maven.plugins</groupId>
26                                          <showWarnings>true</showWarnings>          <artifactId>maven-compiler-plugin</artifactId>
27                                          <showDeprecation>true</showDeprecation>          <version>3.1</version>
28                                  </configuration>          <configuration>
29                                  <!--Do NOT show depreciation in test compile -->            <source>1.7</source>
30                                  <executions>            <target>1.7</target>
31                                          <execution>            <showWarnings>true</showWarnings>
32                                                  <id>default-testCompile</id>            <showDeprecation>true</showDeprecation>
33                                                  <phase>test-compile</phase>          </configuration>
34                                                  <configuration>          <!--Do NOT show depreciation in test compile -->
35                                                          <showDeprecation>false</showDeprecation>          <executions>
36                                                  </configuration>            <execution>
37                                                  <goals>              <id>default-testCompile</id>
38                                                          <goal>testCompile</goal>              <phase>test-compile</phase>
39                                                  </goals>              <configuration>
40                                          </execution>                <showDeprecation>false</showDeprecation>
41                                  </executions>              </configuration>
42                          </plugin>              <goals>
43                  <goal>testCompile</goal>
44                </goals>
45              </execution>
46                  </plugins>          </executions>
47          </build>        </plugin>
48          <plugin>
49            <groupId>org.codehaus.mojo</groupId>
50          <dependencies>          <artifactId>buildnumber-maven-plugin</artifactId>
51                  <dependency>          <version>1.3</version>
52                          <groupId>javax.servlet</groupId>          <executions>
53                          <artifactId>javax.servlet-api</artifactId>            <execution>
54                          <version>3.0.1</version>              <phase>validate</phase>
55                          <scope>provided</scope>              <goals>
56                  </dependency>                <goal>create</goal>
57                  <dependency>              </goals>
58                          <groupId>jstl</groupId>            </execution>
59                          <artifactId>jstl</artifactId>          </executions>
60                          <version>1.2</version>          <configuration>
61                  </dependency>            <doCheck>false</doCheck>
62              <doUpdate>true</doUpdate>
63            </configuration>
64                  <dependency>        </plugin>
65                          <groupId>org.apache.commons</groupId>        <plugin>
66                          <artifactId>commons-lang3</artifactId>          <groupId>org.apache.maven.plugins</groupId>
67                          <version>3.3.2</version>          <artifactId>maven-war-plugin</artifactId>
68                  </dependency>          <version>2.6</version>
69            <configuration>
70              <archive>
71                  <dependency>              <manifestEntries>
72                          <groupId>dk.thoerup</groupId>                <SCM-Revision>${buildNumber}</SCM-Revision>
73                          <artifactId>CircuitBreaker</artifactId>                <Build-Time>${maven.build.timestamp}</Build-Time>
74                          <version>1.0</version>              </manifestEntries>
75                  </dependency>            </archive>
76            </configuration>
77          </plugin>
78                  <dependency>      </plugins>
79                          <groupId>dk.thoerup</groupId>    </build>
80                          <artifactId>WebConfig</artifactId>  
81                          <version>1.0</version>  
82                  </dependency>    <dependencies>
83        <dependency>
84                  <dependency>        <groupId>javax.servlet</groupId>
85                          <groupId>com.google.code.gson</groupId>        <artifactId>javax.servlet-api</artifactId>
86                          <artifactId>gson</artifactId>        <version>3.0.1</version>
87                          <version>2.3.1</version>        <scope>provided</scope>
88                  </dependency>      </dependency>
89        <dependency>
90          <groupId>javax.servlet.jsp</groupId>
91                  <dependency>        <artifactId>jsp-api</artifactId>
92                          <groupId>com.google.code.geocoder-java</groupId>        <version>2.0</version>
93                          <artifactId>geocoder-java</artifactId>        <scope>provided</scope>
94                          <version>0.16</version>      </dependency>
95                  </dependency>      <dependency>
96          <groupId>jstl</groupId>
97          <artifactId>jstl</artifactId>
98                  <dependency>        <version>1.2</version>
99                          <groupId>junit</groupId>      </dependency>
100                          <artifactId>junit</artifactId>      <dependency>
101                          <version>4.12</version>        <groupId>org.apache.commons</groupId>
102                          <scope>test</scope>        <artifactId>commons-lang3</artifactId>
103                  </dependency>        <version>3.3.2</version>
104        </dependency>
105          </dependencies>      <dependency>
106          <groupId>dk.thoerup</groupId>
107          <artifactId>CircuitBreaker</artifactId>
108          <repositories>        <version>1.1.1</version>
109                  <repository>      </dependency>
110                          <id>hoerup-releases</id>      <dependency>
111                          <name>hoerup-releases</name>        <groupId>dk.thoerup</groupId>
112                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <artifactId>WebConfig</artifactId>
113                  </repository>        <version>1.0</version>
114          </repositories>      </dependency>
115        <dependency>
116          <groupId>com.google.code.gson</groupId>
117          <artifactId>gson</artifactId>
118          <version>2.3.1</version>
119        </dependency>
120        <dependency>
121          <groupId>com.google.code.geocoder-java</groupId>
122          <artifactId>geocoder-java</artifactId>
123          <version>0.16</version>
124        </dependency>
125        <dependency>
126          <groupId>com.google.guava</groupId>
127          <artifactId>guava</artifactId>
128          <version>18.0</version>
129        </dependency>
130        <dependency>
131          <groupId>com.jcabi</groupId>
132          <artifactId>jcabi-manifests</artifactId>
133          <version>1.1</version>
134        </dependency>
135        <dependency>
136          <groupId>junit</groupId>
137          <artifactId>junit</artifactId>
138          <version>4.12</version>
139          <scope>test</scope>
140        </dependency>
141      </dependencies>
142    
143    
144      <reporting>
145        <plugins>
146          <plugin>
147            <groupId>org.codehaus.mojo</groupId>
148            <artifactId>findbugs-maven-plugin</artifactId>
149            <version>3.0.1</version>
150          </plugin>
151        </plugins>
152      </reporting>
153      <repositories>
154        <repository>
155          <id>hoerup-releases</id>
156          <name>hoerup-releases</name>
157          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
158        </repository>
159      </repositories>
160  </project>  </project>

Legend:
Removed from v.2481  
changed lines
  Added in v.2606

  ViewVC Help
Powered by ViewVC 1.1.20