Skip to content

Commit

Permalink
Merge branch 'sonatype_checkstyle_fix' into rel_6_0
Browse files Browse the repository at this point in the history
  • Loading branch information
tadgh committed May 26, 2022
2 parents 8609d24 + f7a9e44 commit b959061
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions hapi-fhir-checkstyle/pom.xml
Expand Up @@ -39,11 +39,36 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
<execution>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit b959061

Please sign in to comment.