Skip to content

Commit

Permalink
devonfw#103: implemented requested changes
Browse files Browse the repository at this point in the history
added dependencyManagement to root pom.xml
added owasp version property to root pom.xml
renamed security artifact to ide-security
  • Loading branch information
jan-vcapgemini committed Feb 19, 2024
1 parent 7628cc9 commit db6e276
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,19 @@
<properties>
<github.repository>IDEasy</github.repository>
<ide_version>${revision}</ide_version>
<owasp.version>9.0.9</owasp.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-core</artifactId>
<version>${owasp.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
12 changes: 2 additions & 10 deletions security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,18 @@
<artifactId>ide</artifactId>
<version>dev-SNAPSHOT</version>
</parent>

<artifactId>ide-security</artifactId>

<groupId>org.example</groupId>
<artifactId>security</artifactId>

<properties>
<java.version>17</java.version>
<owasp.version>9.0.9</owasp.version>
</properties>
<dependencies>
<!-- Other configurations and properties -->
<dependency>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-core</artifactId>
<version>${owasp.version}</version>
</dependency>
<dependency>
<groupId>com.devonfw.tools.IDEasy</groupId>
<artifactId>ide-cli</artifactId>
<version>2024.02.001-alpha-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit db6e276

Please sign in to comment.