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
| import java.io.InputStream; | |
| import java.util.LinkedList; | |
| public class Calculator { | |
| private double total = 0, zero=0; | |
| private void reset(){total = 0;} | |
| public int getTotal(){return total;} | |
| public void sum(double value){total+=value;} | |
| public void pow(double value) { |
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
| [ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.2:jar (attach-javadocs) on project javalang-compiler: Error while creating archive:Exit code: 1 - /Users/raquelpau/github/javalang-compiler/src/main/java/org/walkmod/javalang/compiler/symbols/AnonymousClassUtil.java:18: warning: no @param for n | |
| [ERROR] public static boolean needsSymbolData(ObjectCreationExpr n) { | |
| [ERROR] ^ | |
| [ERROR] /Users/raquelpau/github/javalang-compiler/src/main/java/org/walkmod/javalang/compiler/symbols/AnonymousClassUtil.java:18: warning: no @return | |
| [ERROR] public static boolean needsSymbolData(ObjectCreationExpr n) { | |
| [ERROR] ^ | |
| [ERROR] /Users/raquelpau/github/javalang-compiler/src/main/java/org/walkmod/javalang/compiler/symbols/SymbolType.java:246: warning: no @param for name | |
| [ERROR] public void setName(String name) { | |
| [ERROR] ^ | |
| [ERROR] /Users/raquelpau/github/javalang-compiler/src/main/java/org/walkmod/javalang/compiler/symbols/Symb |
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
| FROM s12v/sns:0.3.5 | |
| HEALTHCHECK --interval=1s --timeout=2s --retries=10 CMD aws sns --endpoint-url http://localhost:9911 list-topics |
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
| <?xml version="1.0"?> | |
| <arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns="http://jboss.org/schema/arquillian" | |
| xsi:schemaLocation="http://jboss.org/schema/arquillian | |
| http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> | |
| <!-- We have to bind the docker hostname and port, otherwise RMI will choose a random port, which we can't forward to the docker host. | |
| RMI is a difficult protocol to configure :(. --> | |
| <extension qualifier="docker"> |
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
| { | |
| "action": "unassigned", | |
| "number": 373, | |
| "pull_request": { | |
| "url": "https://github.schibsted.io/api/v3/repos/spt-engprod/skynet/pulls/373", | |
| "id": 160796, | |
| "html_url": "https://github.schibsted.io/spt-engprod/skynet/pull/373", | |
| "diff_url": "https://github.schibsted.io/spt-engprod/skynet/pull/373.diff", | |
| "patch_url": "https://github.schibsted.io/spt-engprod/skynet/pull/373.patch", | |
| "issue_url": "https://github.schibsted.io/api/v3/repos/spt-engprod/skynet/issues/373", |
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
| #!groovy | |
| @Library('github.com/walkmod/jenkins-pipeline-shared@declarative') _ | |
| pipeline { | |
| agent any | |
| stages { | |
| stage ('Fixing Release'){ | |
| steps { |
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
| #!groovy | |
| @Library('github.com/walkmod/jenkins-pipeline-shared@maven') _ | |
| pipeline { | |
| agent any | |
| stages { | |
| stage ('Fixing Release'){ | |
| steps { | |
| walkmodApply( |
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
| #!groovy | |
| pipeline { | |
| agent any | |
| stages { | |
| stage('Build') { | |
| steps { | |
| sh "mvn package" | |
| } |
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
| <properties> | |
| <walkmod.chains>pmd</walkmod.chains> | |
| <walkmod.properties>configurationFile=ruleset.xml</walkmod.properties> | |
| </properties> |
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
| <plugin> | |
| <groupId>org.walkmod.maven.plugins</groupId> | |
| <artifactId>walkmod-maven-plugin</artifactId> | |
| <version>1.0.3</version> | |
| </plugin> |