Skip to content

Commit

Permalink
feat: Move useless lib definition into kernel - Meeds-io/MIPs#42 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored Jul 26, 2023
1 parent 6321169 commit a2cb831
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
3 changes: 0 additions & 3 deletions exo.kernel.component.command/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@
<configuration>
<argLine>${env.MAVEN_OPTS} -Djava.security.manager=org.exoplatform.commons.test.TestSecurityManager -Djava.security.policy=${project.build.directory}/test-classes/test.policy</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>prepare-test-policy</id>
Expand Down
24 changes: 12 additions & 12 deletions exo.kernel.container/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,18 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.spec.javax.interceptor</groupId>
<artifactId>jboss-interceptors-api_1.1_spec</artifactId>
</exclusion>
</exclusions>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.interceptor</groupId>
<artifactId>javax.interceptor-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
<subethasmtp.version>3.1.7</subethasmtp.version>
<spymemcached.version>2.12.3</spymemcached.version>
<spring-context.version>3.2.4.RELEASE</spring-context.version>

<org.apache.ws.commons.version>1.0.1</org.apache.ws.commons.version>

<!-- Sonar properties -->
<sonar.organization>meeds-io</sonar.organization>
</properties>
Expand Down Expand Up @@ -161,6 +162,11 @@
<artifactId>spymemcached</artifactId>
<version>${spymemcached.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons</groupId>
<artifactId>ws-commons-util</artifactId>
<version>${org.apache.ws.commons.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit a2cb831

Please sign in to comment.