Skip to content

Commit 4ba1629

Browse files
committed
Merge branch 'nais-migration' of https://github.com/statisticsnorway/klass into nais-migration
2 parents a9dc758 + bbd9ae0 commit 4ba1629

File tree

4 files changed

+0
-74
lines changed

4 files changed

+0
-74
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ below is a quick summary of the profiles available (see _application.properties_
159159
we have created custom profiles for time consuming tests that can be toggled on and off to help speed up compile time during development.
160160
The profile named `documentation` will generate API documentation with AsciiDoc (default: enabled)
161161
We also have a custom profile (`testbench`) for running GUI tests using TestBench (Vaadin licensed product).
162-
There's also a `checkstyle` and a `findbugs` for use with Jenkins to create code quality reports.
163162
164163
### Run / Debug
165164

klass-api/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
<scope>provided</scope>
9595
</dependency>
9696

97-
9897
<dependency>
9998
<groupId>org.apache.tomcat.embed</groupId>
10099
<artifactId>tomcat-embed-jasper</artifactId>

klass-shared/pom.xml

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>klass-shared</artifactId>
55
<packaging>jar</packaging>
6-
<!-- <packaging>pom</packaging>-->
76

87
<name>Klass Shared</name>
98
<description>Felles klasser og resurser for Klass komponentene</description>
@@ -26,15 +25,10 @@
2625

2726
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2827
<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>
3228
<objenesis-version>3.3</objenesis-version>
3329
<guava-version>19.0</guava-version>
3430
<woodstox-version>4.4.1</woodstox-version>
3531
<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>
3832
<maven-jaxb2-plugin-version>2.5.0</maven-jaxb2-plugin-version>
3933
<tomcat7-maven-plugin-version>2.2</tomcat7-maven-plugin-version>
4034
<postgresql.version>42.7.7</postgresql.version>
@@ -107,18 +101,6 @@
107101
<artifactId>postgresql</artifactId>
108102
<version>${postgresql.version}</version>
109103
</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>
122104
<dependency>
123105
<groupId>com.fasterxml.jackson.dataformat</groupId>
124106
<artifactId>jackson-dataformat-csv</artifactId>
@@ -218,55 +200,6 @@
218200
</dependency>
219201
</dependencies>
220202
<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>
270203
<profile>
271204
<id>testbench</id>
272205
<build>
@@ -309,7 +242,6 @@
309242
</configuration>
310243
</plugin>
311244

312-
313245
<plugin>
314246
<groupId>org.apache.maven.plugins</groupId>
315247
<artifactId>maven-jar-plugin</artifactId>

pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,19 @@
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3535
<github.repository>statisticsnorway/klass</github.repository>
36-
<findbugs-version>3.0.2</findbugs-version>
37-
<checkstyle-version>2.17</checkstyle-version>
3836
<solr-version>8.5.2</solr-version>
3937
<objenesis-version>2.4</objenesis-version>
4038
<guava-version>19.0</guava-version>
4139
<woodstox-version>4.4.1</woodstox-version>
4240
<commons-lang3-version>3.4</commons-lang3-version>
4341
<rest-assured-version>5.4.0</rest-assured-version>
44-
<apacheds-server-jndi-version>1.5.5</apacheds-server-jndi-version>
4542
<asciidoctor-version>2.2.4</asciidoctor-version>
4643
<maven-jaxb2-plugin-version>0.15.3</maven-jaxb2-plugin-version>
4744
<tomcat7-maven-plugin-version>2.2</tomcat7-maven-plugin-version>
4845
<jaxb-api-version>2.3.1</jaxb-api-version>
4946
<commons-io-version>2.15.1</commons-io-version>
5047
<jakarta-rs-api-version>2.1.6</jakarta-rs-api-version>
5148
<spring-restdocs-version>2.0.8.RELEASE</spring-restdocs-version>
52-
<snakeyaml.version>1.31</snakeyaml.version>
5349
<zonky.version>2.5.1</zonky.version>
5450
<zonky.pg.version>2.1.0</zonky.pg.version>
5551
</properties>

0 commit comments

Comments
 (0)