Skip to content

Commit

Permalink
Release version 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sormuras committed Nov 27, 2024
1 parent 27588f5 commit e21510b
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 63 deletions.
143 changes: 90 additions & 53 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?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"
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>de.sormuras.junit</groupId>
<artifactId>junit-platform-maven-plugin</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.1.8</version>
<packaging>maven-plugin</packaging>

<name>JUnit Platform Maven Plugin</name>
Expand All @@ -24,9 +25,9 @@
<maven.compiler.testSource>21</maven.compiler.testSource>
<maven.compiler.testTarget>21</maven.compiler.testTarget>
<maven.version>3.3.9</maven.version>
<junit.platform.version>1.10.0</junit.platform.version>
<junit.jupiter.version>5.10.0</junit.jupiter.version>
<junit.vintage.version>5.10.0</junit.vintage.version>
<junit.platform.version>1.11.3</junit.platform.version>
<junit.jupiter.version>5.11.3</junit.jupiter.version>
<junit.vintage.version>5.11.3</junit.vintage.version>
</properties>

<prerequisites>
Expand Down Expand Up @@ -68,17 +69,6 @@
</license>
</licenses>

<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<!-- Provided dependencies. -->
<dependency>
Expand Down Expand Up @@ -118,7 +108,7 @@
<dependency>
<groupId>de.sormuras.junit</groupId>
<artifactId>junit-platform-isolator</artifactId>
<version>1.0.0-M10</version>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>

Expand Down Expand Up @@ -214,6 +204,11 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.15.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -262,39 +257,6 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>
<additionalOption>
-html5
</additionalOption>
</additionalOptions>
<quiet>true</quiet>
<doclint>
-missing
</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Use our own food, should point to the latest published version... -->
<plugin>
<groupId>de.sormuras.junit</groupId>
Expand All @@ -306,6 +268,29 @@
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<configuration>
<jreleaser>
<signing>
<active>ALWAYS</active>
<armored>true</armored>
</signing>
<deploy>
<maven>
<mavenCentral>
<sonatype>
<active>ALWAYS</active>
<url>https://central.sonatype.com/api/v1/publisher</url>
<stagingRepositories>target/staging-deploy</stagingRepositories>
</sonatype>
</mavenCentral>
</maven>
</deploy>
</jreleaser>
</configuration>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -385,7 +370,7 @@
<!--<pomInclude>mockito-*</pomInclude>-->
<!--<pomInclude>modular-world-*</pomInclude>-->
<!--<pomInclude>modular-world-multi-modules</pomInclude>-->
<!--<pomInclude>multiple-engines-*</pomInclude>-->
<!--<pomInclude>modular-world-require-static</pomInclude>-->
<!--<pomInclude>timeout</pomInclude>-->
<!--<pomInclude>executionProgress</pomInclude>-->
<!--<pomInclude>charset</pomInclude>-->
Expand All @@ -394,10 +379,12 @@
<!-- None, B. -->
</pomExcludes>
<postBuildHookScript>verify</postBuildHookScript>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<localRepositoryPath>${project.build.directory}/local-repo
</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<scriptVariables>
<junitPlatformVersion>${junit.platform.version}</junitPlatformVersion>
<junitPlatformVersion>${junit.platform.version}
</junitPlatformVersion>
<junitJupiterVersion>${junit.jupiter.version}</junitJupiterVersion>
<junitVintageVersion>${junit.vintage.version}</junitVintageVersion>
</scriptVariables>
Expand Down Expand Up @@ -442,5 +429,55 @@
</plugins>
</build>
</profile>
<profile>
<id>publication</id>
<properties>
<altDeploymentRepository>local::file:./target/staging-deploy
</altDeploymentRepository>
</properties>
<build>
<defaultGoal>deploy</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalOptions>
<additionalOption>
-html5
</additionalOption>
</additionalOptions>
<quiet>true</quiet>
<doclint>
-missing
</doclint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion src/it/modular-world-require-static/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<groupId>@project.groupId@</groupId>
<artifactId>@project.artifactId@</artifactId>
<configuration>
<isolation>MERGED</isolation>
<executor>JAVA</executor>
<javaOptions>
<additionalOptions>
<additionalOption>--show-module-resolution</additionalOption>
Expand Down
6 changes: 3 additions & 3 deletions src/it/multiple-engines-1-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@

<!-- test runtime -->
<dependency>
<groupId>de.sormuras</groupId>
<artifactId>brahms</artifactId>
<version>${brahms.version}</version>
<groupId>de.sormuras.mainrunner</groupId>
<artifactId>de.sormuras.mainrunner.api</artifactId>
<version>${mainrunner.version}</version>
<scope>test</scope>
<!-- Depends on 1.3.0, but we need 1.3.1 or higher -->
<exclusions>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package brahms;
package mainrunner;

public class MaingineTest {
public static void main(String... args) {
System.out.println("brahms.MaingineTest");
System.out.println("mainrunner.MaingineTest");
}
}
8 changes: 4 additions & 4 deletions src/it/setup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

<properties>
<!-- versions -->
<junit.platform.version>1.10.0</junit.platform.version>
<junit.jupiter.version>5.10.0</junit.jupiter.version>
<junit.vintage.version>5.10.0</junit.vintage.version>
<brahms.version>0.11.10</brahms.version>
<junit.platform.version>1.11.3</junit.platform.version>
<junit.jupiter.version>5.11.3</junit.jupiter.version>
<junit.vintage.version>5.11.3</junit.vintage.version>
<mainrunner.version>2.1.5</mainrunner.version>
<junit.version>4.13.2</junit.version>
<jqwik.version>1.5.0</jqwik.version>
<!-- shared build and compiler settings -->
Expand Down

0 comments on commit e21510b

Please sign in to comment.