Skip to content

Commit 5ae25d4

Browse files
committed
fix group id
1 parent f75b9a4 commit 5ae25d4

File tree

1 file changed

+51
-2
lines changed

1 file changed

+51
-2
lines changed

pom.xml

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>barrypitman</groupId>
5+
<groupId>io.github.barrypitman</groupId>
66
<artifactId>junit-xml-formatter</artifactId>
7-
<version>1.0</version>
7+
<version>1.1</version>
88
<packaging>jar</packaging>
99

1010
<name>junitXmlFormatter</name>
@@ -64,6 +64,55 @@
6464
</dependency>
6565
</dependencies>
6666

67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.7.0</version>
73+
<configuration>
74+
<source>1.8</source>
75+
<target>1.8</target>
76+
</configuration>
77+
</plugin>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-source-plugin</artifactId>
81+
<executions>
82+
<execution>
83+
<id>attach-sources</id>
84+
<goals>
85+
<goal>jar</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-javadoc-plugin</artifactId>
93+
<executions>
94+
<execution>
95+
<id>attach-javadocs</id>
96+
<goals>
97+
<goal>jar</goal>
98+
</goals>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-release-plugin</artifactId>
105+
<version>2.4.2</version>
106+
<configuration>
107+
<tagNameFormat>@{project.version}</tagNameFormat>
108+
<autoVersionSubmodules>true</autoVersionSubmodules>
109+
<releaseProfiles>releases</releaseProfiles>
110+
</configuration>
111+
</plugin>
112+
</plugins>
113+
114+
</build>
115+
67116
<profiles>
68117
<profile>
69118
<id>deploy</id>

0 commit comments

Comments
 (0)