Skip to content

Commit

Permalink
fix group id
Browse files Browse the repository at this point in the history
  • Loading branch information
barrypitman committed Apr 25, 2022
1 parent f75b9a4 commit 5ae25d4
Showing 1 changed file with 51 additions and 2 deletions.
53 changes: 51 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
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>barrypitman</groupId>
<groupId>io.github.barrypitman</groupId>
<artifactId>junit-xml-formatter</artifactId>
<version>1.0</version>
<version>1.1</version>
<packaging>jar</packaging>

<name>junitXmlFormatter</name>
Expand Down Expand Up @@ -64,6 +64,55 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>releases</releaseProfiles>
</configuration>
</plugin>
</plugins>

</build>

<profiles>
<profile>
<id>deploy</id>
Expand Down

0 comments on commit 5ae25d4

Please sign in to comment.