|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <artifactId>klass-shared</artifactId> |
5 | 5 | <packaging>jar</packaging> |
6 | | - <!-- <packaging>pom</packaging>--> |
7 | 6 |
|
8 | 7 | <name>Klass Shared</name> |
9 | 8 | <description>Felles klasser og resurser for Klass komponentene</description> |
|
26 | 25 |
|
27 | 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
28 | 27 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
29 | | - <findbugs-version>3.0.5</findbugs-version> |
30 | | - <checkstyle-version>3.3.0</checkstyle-version> |
31 | | - <spring.version>4.3.7.RELEASE</spring.version> |
32 | 28 | <objenesis-version>3.3</objenesis-version> |
33 | 29 | <guava-version>19.0</guava-version> |
34 | 30 | <woodstox-version>4.4.1</woodstox-version> |
35 | 31 | <commons-lang3-version>3.12.0</commons-lang3-version> |
36 | | - <apacheds-server-jndi-version>2.0.0.AM27</apacheds-server-jndi-version> |
37 | | - <asciidoctor-version>1.6.0</asciidoctor-version> |
38 | 32 | <maven-jaxb2-plugin-version>2.5.0</maven-jaxb2-plugin-version> |
39 | 33 | <tomcat7-maven-plugin-version>2.2</tomcat7-maven-plugin-version> |
40 | 34 | <postgresql.version>42.7.7</postgresql.version> |
|
107 | 101 | <artifactId>postgresql</artifactId> |
108 | 102 | <version>${postgresql.version}</version> |
109 | 103 | </dependency> |
110 | | - <dependency> |
111 | | - <!--java based ldap server for testing--> |
112 | | - <groupId>org.apache.directory.server</groupId> |
113 | | - <artifactId>apacheds-server-jndi</artifactId> |
114 | | - <version>${apacheds-server-jndi-version}</version> |
115 | | - <exclusions> |
116 | | - <exclusion> |
117 | | - <groupId>antlr</groupId> |
118 | | - <artifactId>antlr</artifactId> |
119 | | - </exclusion> |
120 | | - </exclusions> |
121 | | - </dependency> |
122 | 104 | <dependency> |
123 | 105 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
124 | 106 | <artifactId>jackson-dataformat-csv</artifactId> |
|
218 | 200 | </dependency> |
219 | 201 | </dependencies> |
220 | 202 | <profiles> |
221 | | - <profile> |
222 | | - <id>findbugs</id> |
223 | | - <build> |
224 | | - <plugins> |
225 | | - <plugin> |
226 | | - <groupId>org.codehaus.mojo</groupId> |
227 | | - <artifactId>findbugs-maven-plugin</artifactId> |
228 | | - <version>${findbugs-version}</version> |
229 | | - <configuration> |
230 | | - <includeTests>true</includeTests> |
231 | | - <threshold>High</threshold> |
232 | | - </configuration> |
233 | | - <executions> |
234 | | - <execution> |
235 | | - <goals> |
236 | | - <goal>check</goal> |
237 | | - </goals> |
238 | | - </execution> |
239 | | - </executions> |
240 | | - </plugin> |
241 | | - </plugins> |
242 | | - </build> |
243 | | - </profile> |
244 | | - <profile> |
245 | | - <id>checkstyle</id> |
246 | | - <build> |
247 | | - <plugins> |
248 | | - <plugin> |
249 | | - <groupId>org.apache.maven.plugins</groupId> |
250 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
251 | | - <version>${checkstyle-version}</version> |
252 | | - <configuration> |
253 | | - <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> |
254 | | - <configLocation>../build_tools/checkstyle.xml</configLocation> |
255 | | - <includeTestSourceDirectory>true</includeTestSourceDirectory> |
256 | | - <violationSeverity>warning</violationSeverity> |
257 | | - <logViolationsToConsole>true</logViolationsToConsole> |
258 | | - </configuration> |
259 | | - <executions> |
260 | | - <execution> |
261 | | - <goals> |
262 | | - <goal>check</goal> |
263 | | - </goals> |
264 | | - </execution> |
265 | | - </executions> |
266 | | - </plugin> |
267 | | - </plugins> |
268 | | - </build> |
269 | | - </profile> |
270 | 203 | <profile> |
271 | 204 | <id>testbench</id> |
272 | 205 | <build> |
|
309 | 242 | </configuration> |
310 | 243 | </plugin> |
311 | 244 |
|
312 | | - |
313 | 245 | <plugin> |
314 | 246 | <groupId>org.apache.maven.plugins</groupId> |
315 | 247 | <artifactId>maven-jar-plugin</artifactId> |
|
0 commit comments