Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 5357883

Browse files
authored
Merge pull request #70 from secureCodeBox/bugfix/naming-inconsistencies
Bugfix/naming inconsistencies
2 parents e2b7d11 + d0e8f82 commit 5357883

File tree

19 files changed

+10
-10
lines changed

19 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ COPY --from=builder ./scb-scanprocesses/nikto-process/target/nikto-process-0.0.1
1616
COPY --from=builder ./scb-scanprocesses/nmap-process/target/nmap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
1717
COPY --from=builder ./scb-scanprocesses/zap-process/target/zap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
1818
COPY --from=builder ./scb-scanprocesses/combined-amass-nmap-process/target/combined-amass-nmap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
19-
COPY --from=builder ./scb-scanprocesses/combined-nmap-nikto-scanprocess/target/combined-nmap-nikto-scanprocess-0.0.1-SNAPSHOT.jar /scb-engine/lib/
19+
COPY --from=builder ./scb-scanprocesses/combined-nmap-nikto-process/target/combined-nmap-nikto-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
2020
COPY --from=builder ./scb-scanprocesses/sslyze-process/target/sslyze-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
2121
COPY --from=builder ./scb-scanprocesses/arachni-process/target/arachni-process-1.0-SNAPSHOT.jar /scb-engine/lib/
22-
COPY --from=builder ./scb-scanprocesses/subdomain-scanner-process/target/subdomain-scanner-process-1.0-SNAPSHOT.jar /scb-engine/lib/
22+
COPY --from=builder ./scb-scanprocesses/amass-process/target/amass-process-1.0-SNAPSHOT.jar /scb-engine/lib/
2323

2424
COPY --from=builder ./scb-persistenceproviders/elasticsearch-persistenceprovider/target/elasticsearch-persistenceprovider-0.0.1-SNAPSHOT-jar-with-dependencies.jar /scb-engine/lib/
2525
COPY --from=builder ./scb-persistenceproviders/s3-persistenceprovider/target/s3-persistenceprovider-0.0.1-SNAPSHOT-jar-with-dependencies.jar /scb-engine/lib/

scb-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@
179179
</dependency>
180180
<dependency>
181181
<groupId>io.securecodebox.scanprocesses</groupId>
182-
<artifactId>subdomain-scanner-process</artifactId>
182+
<artifactId>amass-process</artifactId>
183183
<version>1.0-SNAPSHOT</version>
184184
<scope>runtime</scope>
185185
</dependency>
186186
<dependency>
187187
<groupId>io.securecodebox.scanprocesses</groupId>
188-
<artifactId>combined-nmap-nikto-scanprocess</artifactId>
188+
<artifactId>combined-nmap-nikto-process</artifactId>
189189
<version>0.0.1-SNAPSHOT</version>
190190
<scope>runtime</scope>
191191
</dependency>

scb-scanprocesses/subdomain-scanner-process/pom.xml renamed to scb-scanprocesses/amass-process/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</parent>
3030

3131
<groupId>io.securecodebox.scanprocesses</groupId>
32-
<artifactId>subdomain-scanner-process</artifactId>
32+
<artifactId>amass-process</artifactId>
3333
<version>1.0-SNAPSHOT</version>
3434

3535
<dependencies>

scb-scanprocesses/subdomain-scanner-process/src/main/java/io/securecodebox/scanprocess/ProcessInitConfiguration.java renamed to scb-scanprocesses/amass-process/src/main/java/io/securecodebox/scanprocess/ProcessInitConfiguration.java

File renamed without changes.

scb-scanprocesses/combined-nmap-nikto-scanprocess/src/main/resources/META-INF/processes.xml renamed to scb-scanprocesses/amass-process/src/main/resources/META-INF/processes.xml

File renamed without changes.

scb-scanprocesses/subdomain-scanner-process/src/main/resources/bpmn/subdomain_scanner_process.bpmn renamed to scb-scanprocesses/amass-process/src/main/resources/bpmn/amass_process.bpmn

File renamed without changes.

scb-scanprocesses/subdomain-scanner-process/src/main/resources/forms/default/approve-results.html renamed to scb-scanprocesses/amass-process/src/main/resources/forms/default/approve-results.html

File renamed without changes.

scb-scanprocesses/subdomain-scanner-process/src/main/resources/forms/default/configure-target.html renamed to scb-scanprocesses/amass-process/src/main/resources/forms/default/configure-target.html

File renamed without changes.

scb-scanprocesses/subdomain-scanner-process/src/test/java/io/securecodebox/scanprocess/test/SubdomainScannerProcessTest.java renamed to scb-scanprocesses/amass-process/src/test/java/io/securecodebox/scanprocess/test/SubdomainScannerProcessTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
*/
7474

7575
@RunWith(SpringJUnit4ClassRunner.class)
76-
@Deployment(resources = "bpmn/subdomain_scanner_process.bpmn")
76+
@Deployment(resources = "bpmn/amass_process.bpmn")
7777
@Ignore("Ignored until problems with camunda testing frameworks are handled. Introduces via update to camunda 7.10")
7878
public class SubdomainScannerProcessTest {
7979

@@ -127,7 +127,7 @@ If you have the path to your executable code (the class for delegate) as delegat
127127
then this guide is helpful:
128128
https://blog.akquinet.de/2016/11/04/camunda-bpm-test-your-processes-based-on-plain-old-java-delegates/
129129
*/
130-
autoMock("bpmn/subdomain_scanner_process.bpmn");
130+
autoMock("bpmn/amass_process.bpmn");
131131

132132
/*
133133
Here we define a default behaviour for all the tasks in the BPMN model.

scb-scanprocesses/subdomain-scanner-process/src/test/resources/camunda.cfg.xml renamed to scb-scanprocesses/amass-process/src/test/resources/camunda.cfg.xml

File renamed without changes.

0 commit comments

Comments
 (0)