From: Liem Nguyen Date: Fri, 5 Sep 2014 05:37:29 +0000 (-0700) Subject: Added integration tests back (and cleaned up poms). Integration tests can be trigger... X-Git-Tag: release/helium-sr1~25^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=2dbdd733ba919cf234a36f8e88f2c5717812b672;p=aaa.git Added integration tests back (and cleaned up poms). Integration tests can be triggered by: mvn clean install -Paaa-it Change-Id: Ibb3c8a7a7bbce159530effaf653d02c690324b23 Signed-off-by: Liem Nguyen --- diff --git a/aaa-authn-basic/pom.xml b/aaa-authn-basic/pom.xml index c57811692..f4669ddf9 100644 --- a/aaa-authn-basic/pom.xml +++ b/aaa-authn-basic/pom.xml @@ -52,7 +52,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn-keystone/pom.xml b/aaa-authn-keystone/pom.xml index f269a28f1..e947bdf9c 100644 --- a/aaa-authn-keystone/pom.xml +++ b/aaa-authn-keystone/pom.xml @@ -35,7 +35,6 @@ javax.servlet servlet-api - 2.5 provided @@ -52,7 +51,6 @@ com.sun.jersey.jersey-test-framework jersey-test-framework-grizzly2 - 1.17 test @@ -63,7 +61,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn-odl-plugin/pom.xml b/aaa-authn-odl-plugin/pom.xml index 2a832a629..f55e75842 100644 --- a/aaa-authn-odl-plugin/pom.xml +++ b/aaa-authn-odl-plugin/pom.xml @@ -25,6 +25,7 @@ org.opendaylight.controller netconf-auth + ${netconf.version} org.osgi @@ -40,7 +41,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn-sssd/pom.xml b/aaa-authn-sssd/pom.xml index 29445779c..c2e08dfb2 100644 --- a/aaa-authn-sssd/pom.xml +++ b/aaa-authn-sssd/pom.xml @@ -26,7 +26,7 @@ org.glassfish javax.json - 1.0.4 + ${glassfish.json.version} org.opendaylight.aaa @@ -45,7 +45,6 @@ javax.servlet servlet-api - 2.5 provided @@ -62,7 +61,6 @@ com.sun.jersey.jersey-test-framework jersey-test-framework-grizzly2 - 1.17 test @@ -73,7 +71,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn-store/pom.xml b/aaa-authn-store/pom.xml index ca52a3072..e00e84daa 100644 --- a/aaa-authn-store/pom.xml +++ b/aaa-authn-store/pom.xml @@ -17,7 +17,6 @@ net.sf.ehcache ehcache - ${ehcache.version} org.opendaylight.aaa @@ -52,7 +51,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn-sts/pom.xml b/aaa-authn-sts/pom.xml index e12129622..b613d5c22 100644 --- a/aaa-authn-sts/pom.xml +++ b/aaa-authn-sts/pom.xml @@ -36,25 +36,21 @@ javax.servlet servlet-api - 2.5 provided org.apache.oltu.oauth2 org.apache.oltu.oauth2.authzserver - ${oauth.version} provided org.apache.oltu.oauth2 org.apache.oltu.oauth2.common - ${oauth.version} provided org.apache.oltu.oauth2 org.apache.oltu.oauth2.resourceserver - ${oauth.version} provided @@ -71,13 +67,11 @@ com.sun.jersey.jersey-test-framework jersey-test-framework-grizzly2 - 1.17 test org.eclipse.jetty jetty-servlet-tester - 7.0.0.M2 test @@ -93,7 +87,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn/pom.xml b/aaa-authn/pom.xml index 2d29094b0..25ddea1b5 100644 --- a/aaa-authn/pom.xml +++ b/aaa-authn/pom.xml @@ -33,6 +33,11 @@ org.osgi.core provided + + org.osgi + org.osgi.compendium + provided + org.apache.felix org.apache.felix.dependencymanager @@ -47,7 +52,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-authn/src/main/java/org/opendaylight/aaa/AuthenticationManager.java b/aaa-authn/src/main/java/org/opendaylight/aaa/AuthenticationManager.java index 25170e3ca..23ae4ef69 100644 --- a/aaa-authn/src/main/java/org/opendaylight/aaa/AuthenticationManager.java +++ b/aaa-authn/src/main/java/org/opendaylight/aaa/AuthenticationManager.java @@ -60,18 +60,18 @@ public class AuthenticationManager implements AuthenticationService, } @Override - public void updated(Dictionary props) + public boolean isAuthEnabled() { + return authEnabled; + } + + @Override + public void updated(Dictionary properties) throws ConfigurationException { try { - authEnabled = Boolean.valueOf((String) props.get(AUTH_ENABLED)); + authEnabled = Boolean.valueOf((String) properties.get(AUTH_ENABLED)); } catch (Throwable t) { throw new ConfigurationException(AUTH_ENABLED, AUTH_ENABLED_ERR); } } - @Override - public boolean isAuthEnabled() { - return authEnabled; - } - } diff --git a/aaa-authz/aaa-authz-model/pom.xml b/aaa-authz/aaa-authz-model/pom.xml index 02ed16e55..479f5e3e7 100644 --- a/aaa-authz/aaa-authz-model/pom.xml +++ b/aaa-authz/aaa-authz-model/pom.xml @@ -18,7 +18,7 @@ org.opendaylight.yangtools yang-binding - ${yang.codegen.version} + ${yangtools.version} org.opendaylight.yangtools.model @@ -39,13 +39,11 @@ org.apache.felix maven-bundle-plugin - 2.3.6 true org.apache.maven.plugins maven-javadoc-plugin - 2.8.1 maven @@ -61,7 +59,7 @@ org.opendaylight.yangtools yang-maven-plugin - ${yang.maven.plugin.version} + ${yangtools.version} @@ -86,7 +84,7 @@ org.opendaylight.yangtools maven-sal-api-gen-plugin - ${yang.codegen.version} + ${yangtools.version} jar @@ -94,7 +92,6 @@ org.codehaus.mojo build-helper-maven-plugin - 1.7 generate-sources diff --git a/aaa-authz/aaa-authz-service/.gitignore b/aaa-authz/aaa-authz-service/.gitignore new file mode 100644 index 000000000..3edb497a1 --- /dev/null +++ b/aaa-authz/aaa-authz-service/.gitignore @@ -0,0 +1,2 @@ +yang-gen-config/ +yang-gen-sal/ diff --git a/aaa-authz/aaa-authz-service/pom.xml b/aaa-authz/aaa-authz-service/pom.xml index 7317ccf01..1966cda67 100644 --- a/aaa-authz/aaa-authz-service/pom.xml +++ b/aaa-authz/aaa-authz-service/pom.xml @@ -1,15 +1,11 @@ - + - + aaa-authz org.opendaylight.aaa @@ -25,49 +21,51 @@ org.opendaylight.controller sal-binding-util - 1.1-SNAPSHOT + ${mdsal.version} org.opendaylight.controller sal-common-util - 1.1-SNAPSHOT + ${mdsal.version} org.opendaylight.yangtools yang-data-api - ${yang.codegen.version} + ${yangtools.version} commons-codec commons-codec - 1.7 org.opendaylight.controller sal-binding-api - 1.1-SNAPSHOT + ${mdsal.version} org.opendaylight.controller config-api + ${config.version} org.opendaylight.controller sal-binding-config + ${mdsal.version} org.opendaylight.aaa aaa-authz-model - 0.1.0-SNAPSHOT + ${project.version} org.opendaylight.aaa aaa-authn-api - 0.1.0-SNAPSHOT + ${project.version} org.opendaylight.controller sal-core-api + ${mdsal.version} org.jboss.resteasy @@ -75,36 +73,34 @@ provided - - - junit - junit - test - - - org.mockito - mockito-all - test - - - org.slf4j - slf4j-simple - 1.7.7 - test - + + + junit + junit + test + + + org.mockito + mockito-all + test + + + org.slf4j + slf4j-simple + test + - + org.apache.felix maven-bundle-plugin - 2.3.6 true - + org.opendaylight.aaa.config.yang.aaa_srv, @@ -113,10 +109,13 @@ org.opendaylight.yangtools yang-maven-plugin + ${yangtools.version} config - generate-sources + + generate-sources + diff --git a/aaa-idmlight/pom.xml b/aaa-idmlight/pom.xml index d7b82b31d..e30ef8554 100644 --- a/aaa-idmlight/pom.xml +++ b/aaa-idmlight/pom.xml @@ -36,7 +36,6 @@ javax.servlet servlet-api - 2.5 provided @@ -45,38 +44,48 @@ provided - + - com.sun.jerseyjersey-json1.17provided + com.sun.jersey + jersey-json + provided - org.codehaus.jacksonjackson-core-asl1.9.2provided + org.codehaus.jackson + jackson-core-asl + provided - org.codehaus.jacksonjackson-mapper-asl1.9.2provided + org.codehaus.jackson + jackson-mapper-asl + provided - org.codehaus.jacksonjackson-jaxrs1.9.2provided + org.codehaus.jackson + jackson-jaxrs + provided - org.codehaus.jacksonjackson-xc1.9.2provided + org.codehaus.jackson + jackson-xc + provided - org.codehaus.jettisonjettison1.1provided + org.codehaus.jettison + jettison + provided - - + + org.xerial sqlite-jdbc - 3.7.2 - + com.sun.jersey.jersey-test-framework jersey-test-framework-grizzly2 - 1.17 test @@ -87,7 +96,6 @@ org.slf4j slf4j-simple - 1.7.7 test diff --git a/aaa-idp-mapping/pom.xml b/aaa-idp-mapping/pom.xml index 8dbb616a6..454077451 100644 --- a/aaa-idp-mapping/pom.xml +++ b/aaa-idp-mapping/pom.xml @@ -16,7 +16,6 @@ org.glassfish javax.json - 1.0.4 org.osgi diff --git a/aaa-it/pom.xml b/aaa-it/pom.xml index 4e6f7d42e..7c83b3f57 100644 --- a/aaa-it/pom.xml +++ b/aaa-it/pom.xml @@ -12,80 +12,69 @@ aaa-it + org.opendaylight.controller - distribution.opendaylight-karaf - ${commons.opendaylight.version} + opendaylight-karaf-empty + ${karaf.empty.version} zip + + org.opendaylight.aaa - aaa-authn-api - ${project.version} - - - org.opendaylight.aaa - aaa-authn - ${project.version} - - - org.opendaylight.aaa - aaa-authn-store - ${project.version} - - - org.opendaylight.aaa - aaa-authn-sts + features-aaa ${project.version} + features + xml + - org.opendaylight.aaa - aaa-authn-keystone - ${project.version} + org.ops4j.pax.exam + pax-exam-container-karaf + test - org.opendaylight.aaa - aaa-authn-sssd - ${project.version} + org.ops4j.pax.exam + pax-exam-junit4 + test - org.opendaylight.aaa - aaa-idmlight - ${project.version} + org.ops4j.pax.exam + pax-exam + test - org.opendaylight.aaa - aaa-authz-model - ${project.version} + org.ops4j.pax.exam + pax-exam-link-mvn + test - - junit - junit + org.ops4j.pax.url + pax-url-aether + test - org.ops4j.pax.exam - pax-exam-junit4 - ${exam.version} + javax.inject + javax.inject + test - org.ops4j.pax.exam - pax-exam-container-karaf - ${exam.version} + org.apache.karaf.features + org.apache.karaf.features.core test - org.ops4j.pax.exam - pax-exam-link-mvn - ${exam.version} + org.osgi + org.osgi.core test - org.ops4j.pax.url - pax-url-aether - 2.1.0 + junit + junit test + org.apache.oltu.oauth2 org.apache.oltu.oauth2.client @@ -99,7 +88,6 @@ org.ops4j.pax.exam maven-paxexam-plugin - 1.2.4 generate-config diff --git a/aaa-it/src/test/java/org/opendaylight/aaa/AAATest.java b/aaa-it/src/test/java/org/opendaylight/aaa/AAATest.java index 439395606..216d6cc8d 100644 --- a/aaa-it/src/test/java/org/opendaylight/aaa/AAATest.java +++ b/aaa-it/src/test/java/org/opendaylight/aaa/AAATest.java @@ -11,13 +11,8 @@ package org.opendaylight.aaa; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; -import static org.ops4j.pax.exam.CoreOptions.maven; -import static org.ops4j.pax.exam.CoreOptions.mavenBundle; -import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.configureConsole; -import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.features; -import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.karafDistributionConfiguration; -import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.keepRuntimeFolder; -import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.logLevel; +import static org.ops4j.pax.exam.CoreOptions.*; +import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.*; import java.io.File; @@ -82,10 +77,9 @@ public class AAATest { karafDistributionConfiguration() .frameworkUrl( maven().groupId("org.opendaylight.controller") - .artifactId( - "distribution.opendaylight-karaf") + .artifactId("opendaylight-karaf-empty") .type("zip").versionAsInProject()) - .karafVersion("3.0.1").name("OpenDaylight") + .name("OpenDaylight") .unpackDirectory(new File("target/pax")) .useDeployFolder(false), // It is really nice if the container sticks around after the @@ -98,14 +92,11 @@ public class AAATest { // Force the log level to INFO so we have more details during // the test. It defaults to WARN. logLevel(LogLevel.INFO), - // Provision the feature exercised by this test features( "mvn:org.opendaylight.aaa/features-aaa/0.1.0-SNAPSHOT/xml/features", "odl-aaa-all"), mavenBundle().groupId("org.apache.oltu.oauth2") .artifactId("org.apache.oltu.oauth2.client") - .versionAsInProject() - // debugConfiguration("5000", true), - }; + .versionAsInProject(), }; } } diff --git a/commons/parent/pom.xml b/commons/parent/pom.xml index c5ec067c8..32ba6c7d0 100644 --- a/commons/parent/pom.xml +++ b/commons/parent/pom.xml @@ -2,11 +2,6 @@ 4.0.0 - - org.opendaylight.controller - commons.opendaylight - 1.4.2-SNAPSHOT - org.opendaylight.aaa commons.aaa 0.1.0-SNAPSHOT @@ -14,31 +9,74 @@ 3.0.4 + - + 1.7 1.7 UTF-8 utf-8 - 1.7 - 1.7 1.7.2 1.0.9 + + + 3.0.1 + 1.0.0-SNAPSHOT + 1.4.2-SNAPSHOT + 1.4.2-SNAPSHOT + + + 2.12 + 3.1 + 2.6 + 1.9.1 + 2.15 + 1.2.4 + 2.5.3 + 2.8.1 + + 5.0.0 + 5.0.0 + 3.1.0 + 1.0.10 + 2010.09.24.4-SNAPSHOT 2010.09.24.4-SNAPSHOT 2013.09.07.4-SNAPSHOT - 1.1-SNAPSHOT - 0.6.2-SNAPSHOT - 0.6.2-SNAPSHOT + 0.6.2-SNAPSHOT + src/main/yang-gen-config + src/main/yang-gen-sal + 1.1-SNAPSHOT + 0.2.5-SNAPSHOT + 3.0.4.Final 08-authz-config.xml 10-rest-connector.xml + 2.8.3 1.0.0 - + 1.17 + 2.5 + 1.1.1 + 1.0.0 + + + 0.2.5-SNAPSHOT + + + 1.0.4 + 1.9.2 + 1.1 + 3.7.2 + + 4.1.0 + 2.1.0 + 1 + 1.9.5 + 7.0.0.M2 @@ -84,9 +122,14 @@ ${logback.version} - org.osgi - org.osgi.core - ${osgi.core.version} + commons-codec + commons-codec + 1.7 + + + org.json + json + 20131018 org.opendaylight.yangtools.model @@ -104,16 +147,117 @@ ${yang.ext.version} - org.opendaylight.controller - sal-binding-config - ${sal.binding.config.version} + com.sun.jersey + jersey-servlet + ${jersey.version} - commons-codec - commons-codec - 1.7 + com.sun.jersey + jersey-core + ${jersey.version} + + + com.sun.jersey + jersey-server + ${jersey.version} + + + com.sun.jersey + jersey-json + ${jersey.version} + + + org.osgi + org.osgi.core + ${osgi.core.version} + + + org.osgi + org.osgi.compendium + ${osgi.compendium.version} + + + org.apache.felix + org.apache.felix.dependencymanager + ${osgi.dm.version} + + + org.apache.felix + org.apache.felix.metatype + ${osgi.metatype.version} + + + net.sf.ehcache + ehcache + ${ehcache.version} + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + ${jta.version} + + + org.apache.oltu.oauth2 + org.apache.oltu.oauth2.common + ${oltu.version} + + + org.apache.oltu.oauth2 + org.apache.oltu.oauth2.authzserver + ${oltu.version} + + + org.apache.oltu.oauth2 + org.apache.oltu.oauth2.resourceserver + ${oltu.version} + + + org.glassfish + javax.json + ${glassfish.json.version} + + + org.codehaus.jackson + jackson-core-asl + ${jackson.version} + + + org.codehaus.jackson + jackson-mapper-asl + ${jackson.version} + + + org.codehaus.jackson + jackson-jaxrs + ${jackson.version} + + + org.codehaus.jackson + jackson-xc + ${jackson.version} + + + org.codehaus.jettison + jettison + ${jettison.version} + + + org.xerial + sqlite-jdbc + ${sqlite.jdbc.version} + + + javax.servlet + servlet-api + ${servlet.version} + + + org.jboss.resteasy + jaxrs-api + ${jaxrs.version} + org.opendaylight.yangtools.thirdparty xtend-lib-osgi @@ -126,6 +270,72 @@ 4.8.1 test + + org.slf4j + slf4j-simple + 1.7.7 + test + + + org.mockito + mockito-all + ${mockito.version} + test + + + org.ops4j.pax.exam + pax-exam-container-karaf + ${exam.version} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${exam.version} + test + + + org.ops4j.pax.exam + pax-exam + ${exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${exam.version} + test + + + org.ops4j.pax.url + pax-url-aether + ${aether.version} + test + + + javax.inject + javax.inject + ${javax.inject.version} + test + + + org.apache.karaf.features + org.apache.karaf.features.core + ${karaf.version} + test + + + com.sun.jersey.jersey-test-framework + jersey-test-framework-grizzly2 + ${jersey.version} + test + + + org.eclipse.jetty + jetty-servlet-tester + ${servlet.tester.version} + test + @@ -135,22 +345,54 @@ org.apache.maven.plugins maven-compiler-plugin + ${compiler.plugin.version} ${java.version.source} ${java.version.target} - ${java.version.source} - ${java.version.target} + + org.apache.felix + maven-bundle-plugin + ${bundle.plugin.version} + true + + + org.codehaus.mojo + build-helper-maven-plugin + ${helper.plugin.version} + + + org.apache.maven.plugins + maven-resources-plugin + ${resource.plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + + org.ops4j.pax.exam + maven-paxexam-plugin + ${paxexam.plugin.version} + + https://wiki.opendaylight.org/view/AAA:Main scm:git:ssh://git.opendaylight.org:29418/aaa.git scm:git:ssh://git.opendaylight.org:29418/aaa.git HEAD + @@ -175,9 +417,9 @@ opendaylight-snapshot opendaylight-snapshot http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ - - true - + + false + @@ -202,9 +444,9 @@ opendaylight-snapshot central2 http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ - - true - + + false + diff --git a/distribution-karaf/pom.xml b/distribution-karaf/pom.xml index bbf2c6e87..9cc792306 100644 --- a/distribution-karaf/pom.xml +++ b/distribution-karaf/pom.xml @@ -1,258 +1,250 @@ - - 4.0.0 - - aaa.project - org.opendaylight.aaa - 0.1.0-SNAPSHOT - ../ - - distribution-karaf - org.opendaylight.aaa - pom - - 3.0 - - - 1.0.0-SNAPSHOT - 1.4.2-SNAPSHOT - 3.0.1 - + + 4.0.0 + + aaa.project + org.opendaylight.aaa + 0.1.0-SNAPSHOT + ../ + + distribution-karaf + pom + + 3.0 + - - - - org.apache.karaf.features - framework - ${karaf.version} - kar - - - org.apache.karaf.features - standard - ${karaf.version} - features - xml - runtime - + + + + org.apache.karaf.features + framework + ${karaf.version} + kar + + + org.apache.karaf.features + standard + ${karaf.version} + features + xml + runtime + - - - org.opendaylight.controller - karaf.branding - ${branding.version} - compile - + + + org.opendaylight.controller + karaf.branding + ${karaf.branding.version} + compile + - - - org.opendaylight.controller - opendaylight-karaf-resources - ${karaf.resources.version} - + + + org.opendaylight.controller + opendaylight-karaf-resources + ${karaf.resources.version} + - - - org.opendaylight.aaa - features-aaa - features - ${project.version} - xml - runtime - - + + + org.opendaylight.aaa + features-aaa + features + ${project.version} + xml + runtime + + - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.felix - maven-bundle-plugin - [0,) - - cleanVersions - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - [0,) - - copy - unpack - - - - - - - - - org.apache.karaf.tooling - karaf-maven-plugin - [0,) - - commands-generate-help - - - - - - - - - org.fusesource.scalate - maven-scalate-plugin - [0,) - - sitegen - - - - - - - - - org.apache.servicemix.tooling - depends-maven-plugin - [0,) - - generate-depends-file - - - - - - - - - - - - - - - org.apache.karaf.tooling - karaf-maven-plugin - ${karaf.version} - true - - - standard - - - - - - - process-resources - - install-kars - - process-resources - - - package - - instance-create-archive - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.6 - - - copy - - copy - - generate-resources - - - - org.opendaylight.controller - karaf.branding - ${karaf.branding.version} - target/assembly/lib - karaf.branding-${branding.version}.jar - - - - - - unpack-karaf-resources - - unpack-dependencies - - prepare-package - - ${project.build.directory}/assembly - org.opendaylight.controller - opendaylight-karaf-resources - META-INF\/** - true - false - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - prepare-package - - run - + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.felix + maven-bundle-plugin + [0,) + + cleanVersions + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [0,) + + copy + unpack + + + + + + + + + org.apache.karaf.tooling + karaf-maven-plugin + [0,) + + commands-generate-help + + + + + + + + + org.fusesource.scalate + maven-scalate-plugin + [0,) + + sitegen + + + + + + + + + org.apache.servicemix.tooling + depends-maven-plugin + [0,) + + generate-depends-file + + + + + + + + + + + + + + + org.apache.karaf.tooling + karaf-maven-plugin + ${karaf.version} + true - - - - - - - - - - - - - + + standard + + + - - - - - - - scm:git:ssh://git.opendaylight.org:29418/aaa.git - scm:git:ssh://git.opendaylight.org:29418/aaa.git - HEAD - https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary - + + + process-resources + + install-kars + + process-resources + + + package + + instance-create-archive + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.6 + + + copy + + copy + + generate-resources + + + + org.opendaylight.controller + karaf.branding + ${karaf.branding.version} + target/assembly/lib + karaf.branding-${karaf.branding.version}.jar + + + + + + unpack-karaf-resources + + unpack-dependencies + + prepare-package + + ${project.build.directory}/assembly + org.opendaylight.controller + opendaylight-karaf-resources + META-INF\/** + true + false + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-package + + run + + + + + + + + + + + + + + + + + + + + + + + scm:git:ssh://git.opendaylight.org:29418/aaa.git + scm:git:ssh://git.opendaylight.org:29418/aaa.git + HEAD + https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary + diff --git a/features/pom.xml b/features/pom.xml index d307e8a5e..df7eb544a 100644 --- a/features/pom.xml +++ b/features/pom.xml @@ -1,7 +1,7 @@ - @@ -18,12 +18,6 @@ features.xml - 1.0.0-SNAPSHOT - 1.4.2-SNAPSHOT - 3.0.1 - 0.6.2-SNAPSHOT - 1.4.2-SNAPSHOT - 2.16 @@ -31,102 +25,82 @@ com.sun.jersey jersey-servlet - 1.17 com.sun.jersey jersey-core - 1.17 com.sun.jersey jersey-server - 1.17 + + com.sun.jersey + jersey-json + org.apache.felix org.apache.felix.dependencymanager - 3.1.0 org.apache.felix org.apache.felix.metatype - 1.0.10 net.sf.ehcache ehcache - 2.8.3 org.apache.geronimo.specs geronimo-jta_1.1_spec - 1.1.1 org.apache.oltu.oauth2 org.apache.oltu.oauth2.common - 1.0.0 org.apache.oltu.oauth2 org.apache.oltu.oauth2.authzserver - 1.0.0 org.apache.oltu.oauth2 org.apache.oltu.oauth2.resourceserver - 1.0.0 commons-codec commons-codec - 1.8 org.json json - 20131018 - com.sun.jersey - jersey-json - 1.17 - - - org.glassfish - javax.json - 1.0.4 + org.glassfish + javax.json org.codehaus.jackson jackson-core-asl - 1.9.2 org.codehaus.jackson jackson-mapper-asl - 1.9.2 org.codehaus.jackson jackson-jaxrs - 1.9.2 org.codehaus.jackson jackson-xc - 1.9.2 org.codehaus.jettison jettison - 1.1 org.xerial sqlite-jdbc - 3.7.2 @@ -235,7 +209,6 @@ xml - org.opendaylight.controller @@ -259,7 +232,7 @@ org.opendaylight.yangtools features-test - ${feature.test.version} + ${yangtools.version} test @@ -316,7 +289,6 @@ org.apache.maven.plugins maven-surefire-plugin - ${surefire.version} org.opendaylight.controller diff --git a/pom.xml b/pom.xml index dec3da6e9..7610e69d1 100644 --- a/pom.xml +++ b/pom.xml @@ -30,11 +30,17 @@ aaa-authn-odl-plugin features distribution-karaf - + + + aaa-it + + aaa-it + + + +