This repository was archived by the owner on Aug 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
[JENKINS-57886] Modernize and add JCasC #7
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
c93c41e
add git attributes :sweat: windows is hard
jetersen ee83334
update parent pom
jetersen d6511cd
add checkstyle
jetersen e1177c4
incrementalify
jetersen 0ad60c0
mark final
jetersen af7c1fb
use findbug's `NonNull`
jetersen 83bd63f
Remove unused imports
jetersen 48821de
update jenkins version
jetersen 668b567
Use Jenkins.get() instead of deprecated methods
jetersen dce9a5b
Use ACL.as with try resource
jetersen 9cb29ea
add jcasc test dep
jetersen e1d165a
add travis
jetersen 52140cf
add Jenkins file
jetersen 47f704a
update credential plugin so we can benefit from credential configurator
jetersen 13dfd52
add jcasc import/export test
jetersen 3cf0fe4
checkstyle and it's config location issues :cry:
jetersen a3b5f3a
mark GITLAB_ACCESS_TOKEN_LENGTH static as well
jetersen 616a654
imports order
jetersen 255acf5
move server name to data bound constructor
jetersen c828def
gotta have that continuation space of 8 :cry:
jetersen 8ac811d
use unused token
jetersen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | ||
<module name="Checker"> | ||
<module name="FileTabCharacter" /> | ||
<module name="NewlineAtEndOfFile"> | ||
<property name="lineSeparator" value="lf" /> | ||
</module> | ||
<module name="RegexpSingleline"> | ||
<property name="format" value="\s+$"/> | ||
<property name="message" value="Trailing spaces are not allowed."/> | ||
</module> | ||
<module name="TreeWalker"> | ||
<module name="ImportOrder"> | ||
<property name="separatedStaticGroups" value="true" /> | ||
<property name="option" value="bottom" /> | ||
</module> | ||
<module name="UnusedImports" /> | ||
<module name="AvoidStarImport" /> | ||
</module> | ||
</module> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd"> | ||
<extension> | ||
<groupId>io.jenkins.tools.incrementals</groupId> | ||
<artifactId>git-changelist-maven-extension</artifactId> | ||
<version>1.0-beta-7</version> | ||
</extension> | ||
</extensions> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-Pconsume-incrementals | ||
-Pmight-produce-incrementals |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
language: java | ||
|
||
dist: xenial | ||
|
||
before_cache: | ||
- rm -rf $HOME/.m2/repository/io/jenkins/plugins/gitlab-branch-source* | ||
|
||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
|
||
env: | ||
global: | ||
- JAVA_LEVEL=8 | ||
|
||
matrix: | ||
include: | ||
- jdk: openjdk11 | ||
env: | ||
- MVN_FLAG='-Djenkins.version=2.164.1 -Daccess-modifier-checker.failOnError=true' | ||
- jdk: openjdk8 | ||
env: | ||
- MVN_FLAG='-Djenkins.version=2.164.1 -Daccess-modifier-checker.failOnError=true' | ||
- jdk: openjdk8 | ||
|
||
install: | ||
- mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V $MVN_FLAG -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
|
||
script: | ||
- | | ||
mvn clean install -B \ | ||
-Djava.level=$JAVA_LEVEL \ | ||
$MVN_FLAG -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
|
||
notifications: | ||
email: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!groovy | ||
|
||
// Use recommended configuration | ||
buildPlugin(configurations: buildPlugin.recommendedConfigurations()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.