Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
616ba42b
Commit
616ba42b
authored
6 years ago
by
Greg Messner
Browse files
Options
Download
Email Patches
Plain Diff
Fixed eclipse issue with changelog plugin.
parent
48490b0d
main
5.0.x
5.0.x.jdk17
6.x
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pom.xml
+148
-146
pom.xml
with
148 additions
and
146 deletions
+148
-146
pom.xml
+
148
-
146
View file @
616ba42b
...
...
@@ -62,160 +62,162 @@
<build>
<defaultGoal>
package
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
<version>
2.5.3
</version>
<configuration>
<goals>
deploy
</goals>
</configuration>
</plugin>
<pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
<version>
2.5.3
</version>
<configuration>
<goals>
deploy
</goals>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-scm-plugin
</artifactId>
<version>
1.9.5
</version>
<configuration>
<tag>
${project.artifactId}-${project.version}
</tag>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-scm-plugin
</artifactId>
<version>
1.9.5
</version>
<configuration>
<tag>
${project.artifactId}-${project.version}
</tag>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.7.0
</version>
<configuration>
<source>
${java.source.version}
</source>
<target>
${java.target.version}
</target>
</configuration>
<executions>
<execution>
<id>
default-compile
</id>
<configuration>
<excludes>
<exclude>
**/module-info.java
</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.7.0
</version>
<configuration>
<source>
${java.source.version}
</source>
<target>
${java.target.version}
</target>
</configuration>
<executions>
<execution>
<id>
default-compile
</id>
<configuration>
<excludes>
<exclude>
**/module-info.java
</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
1.6
</version>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
1.6
</version>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<version>
3.0.0
</version>
<executions>
<execution>
<id>
attach-sources
</id>
<goals>
<goal>
jar-no-fork
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
<version>
3.0.0
</version>
<executions>
<execution>
<id>
attach-sources
</id>
<goals>
<goal>
jar-no-fork
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
3.0.0
</version>
<executions>
<execution>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
3.0.0
</version>
<executions>
<execution>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.jacoco
</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<version>
0.8.0
</version>
<executions>
<execution>
<id>
default-prepare-agent
</id>
<goals>
<goal>
prepare-agent
</goal>
</goals>
</execution>
<execution>
<id>
default-report
</id>
<phase>
prepare-package
</phase>
<goals>
<goal>
report
</goal>
</goals>
</execution>
<execution>
<id>
default-check
</id>
<goals>
<goal>
check
</goal>
</goals>
<configuration>
<rules>
<!-- implementation is needed only for Maven 2 -->
<rule
implementation=
"org.jacoco.maven.RuleConfiguration"
>
<element>
BUNDLE
</element>
<limits>
<!-- implementation is needed only for Maven 2 -->
<limit
implementation=
"org.jacoco.report.check.Limit"
>
<counter>
COMPLEXITY
</counter>
<value>
COVEREDRATIO
</value>
<minimum>
0.50
</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.jacoco
</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<version>
0.8.0
</version>
<executions>
<execution>
<id>
default-prepare-agent
</id>
<goals>
<goal>
prepare-agent
</goal>
</goals>
</execution>
<execution>
<id>
default-report
</id>
<phase>
prepare-package
</phase>
<goals>
<goal>
report
</goal>
</goals>
</execution>
<execution>
<id>
default-check
</id>
<goals>
<goal>
check
</goal>
</goals>
<configuration>
<rules>
<!-- implementation is needed only for Maven 2 -->
<rule
implementation=
"org.jacoco.maven.RuleConfiguration"
>
<element>
BUNDLE
</element>
<limits>
<!-- implementation is needed only for Maven 2 -->
<limit
implementation=
"org.jacoco.report.check.Limit"
>
<counter>
COMPLEXITY
</counter>
<value>
COVEREDRATIO
</value>
<minimum>
0.50
</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.19.1
</version>
<configuration>
<systemPropertyVariables>
<jacoco-agent.destfile>
target/jacoco.exec
</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.19.1
</version>
<configuration>
<systemPropertyVariables>
<jacoco-agent.destfile>
target/jacoco.exec
</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>
se.bjurr.gitchangelog
</groupId>
<artifactId>
git-changelog-maven-plugin
</artifactId>
<version>
${changelog-lib.version}
</version>
<executions>
<execution>
<id>
GenerateGitChangelog
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
git-changelog
</goal>
</goals>
<configuration>
<readableTagName>
gitlab4j-api-(.*)
</readableTagName>
<templateFile>
CHANGELOG.mustache
</templateFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<plugin>
<groupId>
se.bjurr.gitchangelog
</groupId>
<artifactId>
git-changelog-maven-plugin
</artifactId>
<version>
${changelog-lib.version}
</version>
<executions>
<execution>
<id>
GenerateGitChangelog
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
git-changelog
</goal>
</goals>
<configuration>
<readableTagName>
gitlab4j-api-(.*)
</readableTagName>
<templateFile>
CHANGELOG.mustache
</templateFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets