-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
112 lines (101 loc) · 4.01 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>spring-boot-starter-parent</artifactId>
<groupId>org.springframework.boot</groupId>
<!-- keep version in sync with spring-boot.version in backend pom -->
<version>3.4.0</version>
<relativePath />
</parent>
<groupId>net.ripe.whois</groupId>
<artifactId>db-web-ui-parent</artifactId>
<!-- version is not used (CD server versions artifacts by specifying Implementation-Version (see maven-war-plugin below) -->
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>db-web-ui-parent</name>
<organization>
<name>RIPE NCC, the Netherlands</name>
<url>https://www.ripe.net/</url>
</organization>
<licenses>
<license>
<name>BSD</name>
<url>https://raw.github.com/RIPE-NCC/whois/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<developerConnection>scm:git:ssh://[email protected]:7999/swe/db-web-ui.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>ripe-releases</id>
<url>https://artefacts.ripe.net/repository/maven-releases-ncc/</url>
</repository>
<snapshotRepository>
<id>ripe-snapshots</id>
<url>https://artefacts.ripe.net/repository/maven-snapshots-ncc/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<java.version>21</java.version>
</properties>
<repositories>
<repository>
<id>ripe-releases</id>
<url>https://artefacts.ripe.net/repository/maven-releases-ncc/</url>
</repository>
</repositories>
<modules>
<module>frontend</module>
<module>backend</module>
</modules>
<build>
<plugins>
<!-- dependency check is off by default. Run mvn dependency-check:aggregate to run standalone -->
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>11.1.0</version>
<executions>
<execution>
<!-- do not run by default -->
<id>not-by-default</id>
<phase>not-by-default</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/backend/src/main/webapp</directory>
</fileset>
<fileset>
<directory>${basedir}/frontend/node_modules</directory>
</fileset>
<fileset>
<directory>${basedir}/frontend/node</directory>
</fileset>
<fileset>
<directory>${basedir}/frontend/dist</directory>
</fileset>
<fileset>
<directory>${basedir}/frontend</directory>
<includes>
<include>.t*/</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</project>