Skip to content

Commit

Permalink
Merge branch '1.3.1-SNAPSHOT'
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercamp committed Sep 25, 2018
2 parents e0e2e3f + 60845bd commit d76bc47
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 20 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
<packaging>pom</packaging>

<name>ThreadFix</name>
Expand Down
4 changes: 2 additions & 2 deletions ssvl-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<artifactId>ssvl-converter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>

<build>
<sourceDirectory>src/main/java</sourceDirectory>
Expand Down
2 changes: 1 addition & 1 deletion threadfix-astam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion threadfix-cli-importers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion threadfix-cli-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<artifactId>threadfix-cli-lib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion threadfix-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<artifactId>threadfix-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion threadfix-data-access/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion threadfix-data-migration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion threadfix-entities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,18 @@ public static class Info {

int startingLineNumber;

public static Info fromEndpoint(Endpoint endpoint) {
public static Info fromEndpoint(Endpoint endpoint, boolean includeSourceFile) {
Info info = new Info();
info.parameters = endpoint.getParameters();
info.httpMethod = endpoint.getHttpMethod();
info.urlPath = endpoint.getUrlPath();
info.filePath = endpoint.getFilePath();
info.csvLine = endpoint.getCSVLine();
info.startingLineNumber = endpoint.getStartingLineNumber();

if (includeSourceFile) {
info.filePath = endpoint.getFilePath();
info.startingLineNumber = endpoint.getStartingLineNumber();
}

return info;
}

Expand Down
2 changes: 1 addition & 1 deletion threadfix-ham/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion threadfix-importers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions threadfix-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.secdec.astam-correlator</groupId>
<artifactId>master-pom</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<artifactId>threadfix</artifactId>
Expand Down Expand Up @@ -158,7 +158,7 @@
tofile="target/classes/downloads/release-2.zap" />
<copy file="${project.build.directory}/../../threadfix-sonar-plugin/target/sonar-threadfix-plugin-${project.version}.jar"
tofile="target/classes/downloads/sonar-threadfix-plugin.jar" />-->
<copy file="${project.build.directory}/../../ssvl-converter/target/ssvl-converter-1.3.0-jar-with-dependencies.jar"
<copy file="${project.build.directory}/../../ssvl-converter/target/ssvl-converter-1.3.1-jar-with-dependencies.jar"
tofile="target/classes/downloads/ssvl-converter.jar" />
</tasks>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ private Endpoint.Info[] getEndpointInfo(List<Endpoint> endpoints) {
Endpoint.Info[] endpointsInfos = new Endpoint.Info[allEndpoints.size()];

for (int i = 0; i < allEndpoints.size(); i++) {
endpointsInfos[i] = Endpoint.Info.fromEndpoint(allEndpoints.get(i));
endpointsInfos[i] = Endpoint.Info.fromEndpoint(allEndpoints.get(i), true);
}

return endpointsInfos;
Expand Down
2 changes: 1 addition & 1 deletion threadfix-offline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion threadfix-service-interfaces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>master-pom</artifactId>
<groupId>com.github.secdec.astam-correlator</groupId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit d76bc47

Please sign in to comment.