[
https://issues.jboss.org/browse/DROOLS-471?page=com.atlassian.jira.plugin...
]
Michael Biarnes Kiefer commented on DROOLS-471:
-----------------------------------------------
I have done it so far.
Removing the deprecated repository I saw that in
droolsjbpm-integration/kie-remote/kie-services-remote/pom.xml
<!-- security -->
<dependency>
<groupId>javax.security</groupId>
<artifactId>jacc</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
replaced by
<!-- security -->
<dependency>
<groupId>org.jboss.spec.javax.security.jacc</groupId>
<artifactId>jboss-jacc-api_1.5_spec</artifactId>
<version>1.0.0.Final</version>
<scope>provided</scope>
</dependency>
AND
kie-wb-distributions/kie-eap-integration/kie-eap-modules/kie-jboss-eap-base-modules/jboss-eap-6.1.1/javax-security-jacc-api-main/pom.xml
<!-- Custom dependencies. -->
<dependency>
<groupId>javax.security</groupId>
<artifactId>jacc</artifactId>
<version>1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>javax.security.jacc</groupId>
<artifactId>javax.security.jacc-api</artifactId>
<version>1.4</version>
<type>jar</type>
</dependency>
replaced by
<dependency>
<groupId>org.jboss.spec.javax.security.jacc</groupId>
<artifactId>jboss-jacc-api_1.5_spec</artifactId>
<version>1.0.0.Final</version>
<type>jar</type>
</dependency>
were the only "old" dependencies.
I have changed this locally and the build worked.
As org.jboss.spec.javax.security.jacc is specified with its version in
jboss-integration-platform-parent I think the <version> tag is dispensable too.
I will inform the module owners.
Remove repository jboss-deprecated
----------------------------------
Key: DROOLS-471
URL:
https://issues.jboss.org/browse/DROOLS-471
Project: Drools
Issue Type: Task
Security Level: Public(Everyone can see)
Affects Versions: 6.1.0.Beta2
Reporter: Geoffrey De Smet
Assignee: Michael Biarnes Kiefer
1) In kie-parent-metadata's pom.xml, remove the repository jboss-deprecated:
{code}
<repository>
<id>jboss-deprecated</id>
<name>JBoss Deprecated</name>
<
url>https://repository.jboss.org/nexus/content/repositories/deprecated...
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
{code}
https://github.com/droolsjbpm/droolsjbpm-build-bootstrap/blob/master/pom....
2) remove your local repository
3) Do a mvn-all.sh -Dfull clean install
If it works, commit the change.
If it doesn't, make a list of dependencies that are still coming from the
jboss-deprecated repository and make for each dependency a JIRA (or Bugzilla) issue
calling to remove it. Tell the module owners who use those deprecated dependencies about
the JIRA/BZ and ask them to remove the deprecated dependency.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)