Skip to content

Commit

Permalink
mvn Jamal extension is used
Browse files Browse the repository at this point in the history
  • Loading branch information
verhas committed Jul 6, 2022
1 parent 1248b17 commit 4994b22
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 23 deletions.
15 changes: 15 additions & 0 deletions .mvn/extensions.jam
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{@import https://raw.githubusercontent.com/verhas/jamal/master/version.jim}
<!--
This file was generated from extensions.jam in the same directory as extensions.xml

The current version of Jamal is {VERSION}.
The latest version is {LAST_RELEASE}.
-->

{#thinXml
extensions>
extension>
groupId>com.javax0.jamal
artifactId>jamal-maven-extension
version>{LAST_RELEASE}
}
12 changes: 12 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
This file was generated from extensions.jam in the same directory as extensions.xml
The current version of Jamal is 1.12.3-SNAPSHOT.
The latest version is 1.12.2.
--><extensions>
<extension>
<groupId>com.javax0.jamal</groupId>
<artifactId>jamal-maven-extension</artifactId>
<version>1.12.2</version>
</extension>
</extensions>
52 changes: 29 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javax0.license3j</groupId>
<artifactId>license3j</artifactId>
<version>3.2.0</version>
<packaging>jar</packaging>

<packaging>jar
</packaging>
<name>License3j</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sourceEncoding>UTF-8</sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
Expand Down Expand Up @@ -40,46 +39,48 @@
</developer>
<developer>
<name>Hristo I Stoyanov</name>
<url>https://github.com/hrstoyanov</url>
<url>https://github.com/hrstoyanov
</url>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:verhas/License3j.git</connection>
<developerConnection>scm:git:ssh://github.com/verhas/License3j.git</developerConnection>
<url>https://github.com/verhas/License3j/tree/master</url>
<url>https://github.com/verhas/License3j/tree/master
</url>
</scm>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.4.0</version>
<scope>test</scope>
<scope>test
</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.2</version>
<scope>test</scope>
<scope>test
</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
<scope>test
</scope>
</dependency>
<dependency>
<groupId>com.javax0.geci</groupId>
<artifactId>javageci-testengine</artifactId>
<version>1.6.6</version>
<scope>test</scope>
<version>1.6.5</version>
<scope>test
</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<!--
Use this profile to upload a new release to Maven Central
using mvn -Prelease deploy
-->
<id>release</id>
<build>
<plugins>
Expand All @@ -92,7 +93,8 @@
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
<goal>sign
</goal>
</goals>
</execution>
</executions>
Expand Down Expand Up @@ -120,7 +122,8 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.0</version>
<version>5.7.0
</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -132,7 +135,8 @@
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>jar
</goal>
</goals>
</execution>
</executions>
Expand All @@ -148,7 +152,8 @@
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
<goal>jar
</goal>
</goals>
</execution>
</executions>
Expand All @@ -158,7 +163,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
<release>11
</release>
</configuration>
</plugin>
<plugin>
Expand All @@ -174,4 +180,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 4994b22

Please sign in to comment.