Skip to content

Commit

Permalink
Fixes eclipse-vorto#1195, spring webmvc and spring web jars updated t…
Browse files Browse the repository at this point in the history
…o fix clm policies

Signed-off-by: val8sgp <[email protected]>
  • Loading branch information
val8sgp committed Nov 28, 2018
1 parent 26756b8 commit 1ee9195
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 8 deletions.
22 changes: 18 additions & 4 deletions generators/generator-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<artifactId>org.apache.tomcat.embed</artifactId>
<groupId>tomcat-embed-core</groupId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</exclusion>
<exclusion>
<artifactId>org.apache.tomcat.embed</artifactId>
<groupId>tomcat-embed-websocket</groupId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand All @@ -41,6 +41,20 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.20.RELEASE</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.20.RELEASE</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core -->
<dependency>
Expand Down
30 changes: 26 additions & 4 deletions repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,20 @@
<scope>import</scope>
<exclusions>
<exclusion>
<artifactId>org.apache.tomcat.embed</artifactId>
<groupId>tomcat-embed-core</groupId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</exclusion>
<exclusion>
<artifactId>org.apache.tomcat.embed</artifactId>
<groupId>tomcat-embed-websocket</groupId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand All @@ -50,6 +58,20 @@
<artifactId>spring-boot-starter-log4j</artifactId>
<version>1.3.8.RELEASE</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.20.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.20.RELEASE</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
Expand Down

0 comments on commit 1ee9195

Please sign in to comment.