|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>eu.chargetime.ocpp</groupId> |
8 | | - <artifactId>ocpp16-test</artifactId> |
9 | | - <version>2.0.0</version> |
| 7 | + <parent> |
| 8 | + <groupId>eu.chargetime.ocpp</groupId> |
| 9 | + <artifactId>java-oca-ocpp</artifactId> |
| 10 | + <version>2.0</version> |
| 11 | + </parent> |
10 | 12 |
|
| 13 | + <artifactId>ocpp16-test</artifactId> |
11 | 14 | <name>Java-OCA-OCPP OCPP 1.6 Integration Tests</name> |
12 | 15 | <description>OCPP 1.6 integration tests</description> |
13 | 16 | <url>https://github.com/ChargeTimeEU/Java-OCA-OCPP</url> |
|
34 | 37 | <url>https://github.com/ChargeTimeEU/Java-OCA-OCPP.git</url> |
35 | 38 | </scm> |
36 | 39 |
|
37 | | - <distributionManagement> |
38 | | - <snapshotRepository> |
39 | | - <id>ossrh</id> |
40 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
41 | | - </snapshotRepository> |
42 | | - <repository> |
43 | | - <id>ossrh</id> |
44 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
45 | | - </repository> |
46 | | - </distributionManagement> |
47 | | - |
48 | 40 | <dependencies> |
49 | 41 | <dependency> |
50 | 42 | <groupId>eu.chargetime.ocpp</groupId> |
51 | 43 | <artifactId>ocpp16j</artifactId> |
52 | | - <version>2.0.0</version> |
| 44 | + <version>${project.version}</version> |
53 | 45 | </dependency> |
54 | 46 | <dependency> |
55 | 47 | <groupId>eu.chargetime.ocpp</groupId> |
56 | 48 | <artifactId>ocpp16s</artifactId> |
57 | | - <version>2.0.0</version> |
| 49 | + <version>${project.version}</version> |
58 | 50 | </dependency> |
59 | 51 | <dependency> |
60 | 52 | <groupId>junit</groupId> |
61 | 53 | <artifactId>junit</artifactId> |
62 | 54 | <version>4.13.2</version> |
63 | 55 | <scope>test</scope> |
64 | 56 | </dependency> |
65 | | - <dependency> |
| 57 | + <dependency> |
66 | 58 | <groupId>org.spockframework</groupId> |
67 | 59 | <artifactId>spock-core</artifactId> |
68 | 60 | <version>2.3-groovy-4.0</version> |
69 | 61 | <scope>test</scope> |
70 | 62 | </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.apache.groovy</groupId> |
| 65 | + <artifactId>groovy</artifactId> |
| 66 | + <version>4.0.24</version> |
| 67 | + <scope>test</scope> |
| 68 | + </dependency> |
71 | 69 | <dependency> |
72 | 70 | <groupId>org.hamcrest</groupId> |
73 | 71 | <artifactId>hamcrest-core</artifactId> |
|
118 | 116 | <target>1.8</target> |
119 | 117 | </configuration> |
120 | 118 | </plugin> |
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-deploy-plugin</artifactId> |
| 122 | + <configuration> |
| 123 | + <skip>true</skip> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.sonatype.central</groupId> |
| 128 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 129 | + <configuration> |
| 130 | + <publish>false</publish> |
| 131 | + <skip>true</skip> |
| 132 | + </configuration> |
| 133 | + </plugin> |
121 | 134 | <plugin> |
122 | 135 | <groupId>org.apache.maven.plugins</groupId> |
123 | 136 | <artifactId>maven-surefire-plugin</artifactId> |
|
0 commit comments