Skip to content

Commit c3cb577

Browse files
committed
Fix maven build
Signed-off-by: Taylor Smock <tsmock@meta.com>
1 parent 83ab057 commit c3cb577

File tree

1 file changed

+57
-11
lines changed

1 file changed

+57
-11
lines changed

pom.xml

Lines changed: 57 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>plugin-root</artifactId>
77
<version>SNAPSHOT</version>
88
</parent>
9-
<artifactId>validations_testing</artifactId>
9+
<artifactId>indoorhelper</artifactId>
1010
<url>${plugin.link}</url>
1111
<developers>
1212
<developer>
@@ -17,8 +17,6 @@
1717
</developer>
1818
</developers>
1919
<properties>
20-
<plugin.src.dir>${project.basedir}/src/main/java</plugin.src.dir>
21-
<plugin.resources.dir>${project.basedir}/src/main/resources</plugin.resources.dir>
2220
<plugin.main.version>19044</plugin.main.version>
2321
<plugin.author>Erik Gruschka, Rebecca Schmidt</plugin.author>
2422
<plugin.class>org.openstreetmap.josm.plugins.indoorhelper.IndoorHelperPlugin</plugin.class>
@@ -29,15 +27,63 @@
2927
<plugin.canloadatruntime>true</plugin.canloadatruntime>
3028
<plugin.stage>50</plugin.stage>
3129
</properties>
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.opensourcebim</groupId>
33+
<artifactId>BuildingSMARTLibrary</artifactId>
34+
<version>1.0.9</version>
35+
<scope>compile</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.wiremock</groupId>
39+
<artifactId>wiremock</artifactId>
40+
<scope>test</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.junit.platform</groupId>
44+
<artifactId>junit-platform-launcher</artifactId>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.junit.platform</groupId>
49+
<artifactId>junit-platform-suite</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.junit.vintage</groupId>
54+
<artifactId>junit-vintage-engine</artifactId>
55+
<scope>test</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.junit.jupiter</groupId>
59+
<artifactId>junit-jupiter-params</artifactId>
60+
<scope>test</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.junit.jupiter</groupId>
64+
<artifactId>junit-jupiter-api</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.junit.jupiter</groupId>
69+
<artifactId>junit-jupiter-engine</artifactId>
70+
<scope>test</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.junit.jupiter</groupId>
74+
<artifactId>junit-jupiter-migrationsupport</artifactId>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.jmockit</groupId>
79+
<artifactId>jmockit</artifactId>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.awaitility</groupId>
83+
<artifactId>awaitility</artifactId>
84+
</dependency>
85+
</dependencies>
3286
<build>
33-
<dependencies>
34-
<dependency>
35-
<groupId>org.opensourcebim</groupId>
36-
<artifactId>BuildingSMARTLibrary</artifactId>
37-
<version>1.0.9</version>
38-
<scope>compile</scope>
39-
</dependency>
40-
</dependencies>
4187
<plugins>
4288
<plugin>
4389
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)