|
6 | 6 | <artifactId>plugin-root</artifactId>
|
7 | 7 | <version>SNAPSHOT</version>
|
8 | 8 | </parent>
|
9 |
| - <artifactId>validations_testing</artifactId> |
| 9 | + <artifactId>indoorhelper</artifactId> |
10 | 10 | <url>${plugin.link}</url>
|
11 | 11 | <developers>
|
12 | 12 | <developer>
|
|
17 | 17 | </developer>
|
18 | 18 | </developers>
|
19 | 19 | <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> |
22 | 20 | <plugin.main.version>19044</plugin.main.version>
|
23 | 21 | <plugin.author>Erik Gruschka, Rebecca Schmidt</plugin.author>
|
24 | 22 | <plugin.class>org.openstreetmap.josm.plugins.indoorhelper.IndoorHelperPlugin</plugin.class>
|
|
29 | 27 | <plugin.canloadatruntime>true</plugin.canloadatruntime>
|
30 | 28 | <plugin.stage>50</plugin.stage>
|
31 | 29 | </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> |
32 | 86 | <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> |
41 | 87 | <plugins>
|
42 | 88 | <plugin>
|
43 | 89 | <groupId>org.apache.maven.plugins</groupId>
|
|
0 commit comments