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

Diff of /dao/DaoAdresseVedligehold/pom.xml

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

revision 2798 by torben, Sun Jan 3 19:41:43 2016 UTC revision 3068 by torben, Thu Jul 21 11:48:19 2016 UTC
# Line 13  Line 13 
13    </scm>    </scm>
14    <properties>    <properties>
15      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16        
17        
18        <version.jersey>2.22.1</version.jersey>
19    </properties>    </properties>
20    <build>    <build>
21    
# Line 28  Line 31 
31            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
32    
33            <!-- be strict regarding warnings -->            <!-- be strict regarding warnings -->
34            <compilerArguments>            <compilerArgs>
35              <Werror />                  <arg>-Werror</arg>
36              <!-- <Xlint:all />-->                  <arg>-Xlint:-options</arg> <!--  -options for at lette cross compilation -->
37            </compilerArguments>             </compilerArgs>
38              
39    
40          </configuration>          </configuration>
41          <!--Do NOT show depreciation in test compile -->          <!--Do NOT show depreciation in test compile -->
# Line 83  Line 87 
87        <plugin>        <plugin>
88          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
89          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
90          <version>3.0.0</version>          <version>3.0.4</version>
91        </plugin>        </plugin>
92      </plugins>      </plugins>
93    </build>    </build>
# Line 95  Line 99 
99        <version>3.0.1</version>        <version>3.0.1</version>
100        <scope>provided</scope>        <scope>provided</scope>
101      </dependency>      </dependency>
     <dependency>  
       <groupId>javax.servlet.jsp</groupId>  
       <artifactId>jsp-api</artifactId>  
       <version>2.0</version>  
       <scope>provided</scope>  
     </dependency>  
102    
103      <dependency>      <dependency>
104        <groupId>org.apache.commons</groupId>        <groupId>org.apache.commons</groupId>
# Line 108  Line 106 
106        <version>3.3.2</version>        <version>3.3.2</version>
107      </dependency>      </dependency>
108      <dependency>      <dependency>
109            <groupId>commons-codec</groupId>                  <groupId>commons-fileupload</groupId>
110            <artifactId>commons-codec</artifactId>                  <artifactId>commons-fileupload</artifactId>
111            <version>1.10</version>                  <version>1.3.1</version>
112      </dependency>              </dependency>
113       <!--  
114      <dependency>      <dependency>
115        <groupId>dk.thoerup</groupId>        <groupId>dk.thoerup</groupId>
116        <artifactId>CircuitBreaker</artifactId>        <artifactId>CircuitBreaker</artifactId>
117        <version>1.1.1</version>        <version>1.1.1</version>
118      </dependency>      </dependency>
119        -->
120        
121      <dependency>      <dependency>
122        <groupId>dk.thoerup</groupId>        <groupId>dk.thoerup</groupId>
123        <artifactId>WebConfig</artifactId>        <artifactId>WebConfig</artifactId>
124        <version>1.0</version>        <version>1.0</version>
125      </dependency>      </dependency>
126        
127        
128      <dependency>      <dependency>
129        <groupId>com.google.code.gson</groupId>        <groupId>com.google.code.gson</groupId>
130        <artifactId>gson</artifactId>        <artifactId>gson</artifactId>
131        <version>2.3.1</version>        <version>2.3.1</version>
132      </dependency>      </dependency>
133        
134      <dependency>      <dependency>
135        <groupId>com.google.code.geocoder-java</groupId>                  <groupId>org.json</groupId>
136        <artifactId>geocoder-java</artifactId>                  <artifactId>json</artifactId>
137        <version>0.16</version>                  <version>20160212</version>
138      </dependency>          </dependency>
139        
140        
141      <dependency>      <dependency>
142        <groupId>com.google.guava</groupId>        <groupId>com.google.guava</groupId>
143        <artifactId>guava</artifactId>        <artifactId>guava</artifactId>
# Line 144  Line 150 
150            <version>1.4.5</version>            <version>1.4.5</version>
151      </dependency>      </dependency>
152            
153    <dependency>
154            <groupId>org.apache.commons</groupId>
155            <artifactId>commons-csv</artifactId>
156            <version>1.2</version>
157    </dependency>
158        
159            
160        <!-- contains ags.utils.dataStructures.trees.thirdGenKD -->
161        <dependency>
162                    <groupId>com.nitayjoffe.thirdparty.net.robowiki.knn</groupId>
163                    <artifactId>knn-benchmark</artifactId>
164                    <version>0.1</version>
165            </dependency>
166        
167        <dependency>
168                <groupId>javax.ws.rs</groupId>
169                <artifactId>javax.ws.rs-api</artifactId>
170                <version>2.0.1</version>
171             </dependency>
172             <!-- If deploying on tomcat or other container without a bundled ws-rs implementation -->
173            <dependency>
174                <groupId>org.glassfish.jersey.containers</groupId>
175                <artifactId>jersey-container-servlet</artifactId>
176                <version>${version.jersey}</version>
177            </dependency>
178            <!--
179                    <dependency>
180                        <groupId>org.glassfish.jersey.media</groupId>
181                        <artifactId>jersey-media-moxy</artifactId>
182                        <version>${version.jersey}</version>
183                    </dependency>
184                    
185                    <dependency>
186                        <groupId>org.glassfish.jersey.media</groupId>
187                        <artifactId>jersey-media-json-processing</artifactId>
188                        <version>${version.jersey}</version>
189                    </dependency>
190                    <dependency>
191                        <groupId>org.glassfish.jersey.media</groupId>
192                        <artifactId>jersey-media-multipart</artifactId>
193                        <version>${version.jersey}</version>
194                    </dependency>
195                    <dependency>
196                        <groupId>org.glassfish.jersey.media</groupId>
197                        <artifactId>jersey-media-sse</artifactId>
198                        <version>${version.jersey}</version>
199                    </dependency>
200        
201         -->
202      <!--  webjars -->      <!--  webjars -->
203      <dependency>      <dependency>
204        <groupId>org.webjars</groupId>        <groupId>org.webjars</groupId>
# Line 152  Line 206 
206        <version>2.1.4</version>        <version>2.1.4</version>
207          </dependency>          </dependency>
208          <dependency>          <dependency>
209            <groupId>org.webjars</groupId>
210            <artifactId>jquery-ui</artifactId>
211            <version>1.11.4</version>
212            </dependency>
213            <dependency>
214        <groupId>org.webjars</groupId>        <groupId>org.webjars</groupId>
215        <artifactId>bootstrap</artifactId>        <artifactId>bootstrap</artifactId>
216        <version>3.3.5</version>        <version>3.3.5</version>
# Line 162  Line 221 
221        <version>1.0.2</version>        <version>1.0.2</version>
222      </dependency>      </dependency>
223            
224    
225        <dependency>
226          <groupId>org.webjars.bower</groupId>
227          <artifactId>bootstrap-fileinput</artifactId>
228          <version>4.2.7</version>
229            </dependency>
230            
231            <!-- for @SuppressFBWarning  annotation -->
232            <dependency>
233                    <groupId>com.google.code.findbugs</groupId>
234                    <artifactId>annotations</artifactId>
235                    <version>3.0.1u2</version>
236                    <scope>provided</scope>
237            </dependency>
238        
239      <!--  test dependencies -->      <!--  test dependencies -->
240      <dependency>      <dependency>
241        <groupId>junit</groupId>        <groupId>junit</groupId>
# Line 185  Line 259 
259        <plugin>        <plugin>
260          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
261          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
262          <version>3.0.1</version>          <version>3.0.3</version>
263        </plugin>        </plugin>
       <!-- integrate maven-cobertura-plugin to project site  -->  
264        <plugin>        <plugin>
265          <groupId>org.codehaus.mojo</groupId>          <groupId>org.apache.maven.plugins</groupId>
266          <artifactId>cobertura-maven-plugin</artifactId>          <artifactId>maven-pmd-plugin</artifactId>
267          <version>2.7</version>          <version>3.6</version>
         <configuration>  
           <formats>  
             <format>html</format>  
             <format>xml</format>  
           </formats>  
         </configuration>  
268        </plugin>        </plugin>
269      </plugins>      </plugins>
270    </reporting>    </reporting>

Legend:
Removed from v.2798  
changed lines
  Added in v.3068

  ViewVC Help
Powered by ViewVC 1.1.20