Skip to content

Commit

Permalink
Merge pull request #55 from jenkinsci/jenkins-35306
Browse files Browse the repository at this point in the history
[JENKINS-35306] Credentials Providers need to be able to list credentials without retrieving the backing secret
  • Loading branch information
stephenc committed Jun 7, 2016
2 parents 7491bce + 0f7b5d4 commit b143af8
Show file tree
Hide file tree
Showing 17 changed files with 1,658 additions and 15 deletions.
29 changes: 29 additions & 0 deletions pom.xml
Expand Up @@ -70,6 +70,7 @@
<properties>
<jenkins.version>1.609</jenkins.version>
<java.level>6</java.level>
<antlr4.version>4.5</antlr4.version>
</properties>

<repositories>
Expand Down Expand Up @@ -99,6 +100,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4.version}</version>
</dependency>
</dependencies>

<build>
Expand All @@ -114,6 +120,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>src/findbugs/excludesFilter.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr4.version}</version>
<configuration>
<listener>true</listener>
<visitor>true</visitor>
</configuration>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
5 changes: 5 additions & 0 deletions src/findbugs/excludesFilter.xml
@@ -0,0 +1,5 @@
<FindBugsFilter>
<Match>
<Class name="~.*\.CQL(Lexer|Parser)([$.].*)?"/>
</Match>
</FindBugsFilter>

0 comments on commit b143af8

Please sign in to comment.