Skip to content

Commit

Permalink
adjust release check for changed artifacts
Browse files Browse the repository at this point in the history
The POMs were adjusted to the upgraded dependencies and an expected POM for `archunit-junit5` was added.

Signed-off-by: Peter Gafert <[email protected]>
  • Loading branch information
codecholeric committed Jan 10, 2020
1 parent a15d47a commit 444306d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build-steps/release/expected/archunit-junit4.pom
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 deletions build-steps/release/expected/archunit-junit5-engine-api.pom
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
48 changes: 48 additions & 0 deletions build-steps/release/expected/archunit-junit5.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>${archunit.version}</version>
<name>ArchUnit</name>
<description>A Java architecture test library, to specify and assert architecture rules in plain Java - Module 'archunit-junit5'</description>
<url>https://github.com/TNG/ArchUnit</url>
<organization>
<name>TNG Technology Consulting GmbH</name>
<url>https://www.tngtech.com/</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>codecholeric</id>
<name>Peter Gafert</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:[email protected]:TNG/ArchUnit.git</connection>
<developerConnection>scm:[email protected]:TNG/ArchUnit.git</developerConnection>
<url>https://github.com/TNG/ArchUnit</url>
</scm>
<dependencies>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-api</artifactId>
<version>${archunit.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5-engine</artifactId>
<version>${archunit.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 444306d

Please sign in to comment.