From: Giovanni Meo Date: Fri, 23 Aug 2013 08:56:51 +0000 (+0200) Subject: Prepare for mvn release:prepare release:perform operation X-Git-Tag: releasepom-0.1.0~153^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=f8d0b0f844466bb7e6c10228b825c33776e38cb5 Prepare for mvn release:prepare release:perform operation - Make sure every bundle include a proper scm section - Provided a pom to be used for release operations in the root directory, this is due to some implicit assumptions maven-release-manager does when performing a release. The maven-release-manager in fact calculate a tag name starting from the developerConnection and removing from the URL layers based on how deep the release pom is versus the assumed root. This is hardcoded in: http://svn.apache.org/viewvc/maven/release/tags/maven-release-2.3.2/maven-release-manager/src/main/java/org/apache/maven/shared/release/util/ReleaseUtil.java?view=markup Line 182 (this logic is not really specific to 2.3.2 version, but pretty much in every version). The tag calculation is fine if applied to SCM live SVN but not to GIT hence this limitation of having to place the root pom in the root itself. - Removed uneeded distributions like sdk and parent, because are combined in the main distribution. - Corrected some wrong dependencies in clustering - Added parent poms to distribution so to simplify the deploy of the artifacts. - Disable signing of openflowJ during release, it hangs - Forcing maven-release-plugin to version 2.3.2, latest today (2.4.1) has some issues. - Updated README.OPENDAYLIGHT with process for releasing artifacts - pom file in the root directory is merely a pointer to the main distribution, this doesn't change any of the current workflow and enable release support - Create a profile triggered when the -DDOBUILDRELEASE is set which exclude modules that are still depending on snapshots not under controller project Signed-off-by: Giovanni Meo Change-Id: I7d18fd7a5efd5809d3fc77d4e0ddc302296d9d98 --- diff --git a/README.OPENDAYLIGHT b/README.OPENDAYLIGHT index a587ed8cfb..e85aa31b7b 100644 --- a/README.OPENDAYLIGHT +++ b/README.OPENDAYLIGHT @@ -13,8 +13,6 @@ controller project. be generated by packaging the several artifact. In practice for now there are two: - "opendaylight", which is the full distribution of the controller - - "sdk", which contains only the artifact needed to build an app - against the controller (beaware this is still incomplete). The idea of the distribution directory is that more distribution can be added at will, maybe just composing subsets of the whole controller artifact set. @@ -30,5 +28,50 @@ a build going it's needed to: file of the distribution or controller can be executed right from there going into the distribution directory. -Thanks!! +HOW TO RELEASE ARTIFACTS +======================== +Artifacts can be released in a bulk fashion or one by one depending on +the need. Bulk release works well when in the need of establishing a +baseline, for example on an upcoming major release. Single artifact +release is useful for example for API bundles which are supposed to be +used by others, this in fact seal the contract for that given version +and others can rest assured won't change because the maven repository +will not allow a the same artifact with the same version to be +re-deployed. + +HOW TO BULK RELEASE ARTIFACTS +----------------------------- +Bulk release of the artifacts MUST be done only and exclusively by +using the pom.xml present in the same directory of this +README.OPENDAYLIGHT file. The pom.xml is just a pointer to the main +distribution directory or in general to the one containing all the +modules needs release. +To perform the release from the top level just run: + +mvn -B release:prepare release:perform -Dgoals=deploy + +Well this is not supposed to be executed by a human but by an apposite +Jenkins job because no committer or contributor has the necessary +privileges to escape the code review process needed by the release +process, but this is the logic behind. + +HOW TO RELEASE ONE ARTIFACT +--------------------------- +1) Make sure the artifact doesn't depend on SNAPSHOT artifacts, as a +corollary it means that also the parent pom must be a released +artifact which then will not be present in the repo, so for this kind +of artifacts it's mandatory to provide a repository section to let it +download the parent from Opendaylight maven repository +2) Make sure all the dependencies are also non-SNAPSHOT +3) Via apposite Jenkins job make sure that the goals: +mvn -B release:prepare release:perform -Dgoals=deploy + +is called. + +[NOTE WELL] +The pom.xml in the root level is simply a pointer to the main +distribution but is needed to overcome some of the limitations in the +release process. + +Thanks!! diff --git a/opendaylight/arphandler/pom.xml b/opendaylight/arphandler/pom.xml index 68b9c55830..c58ddd2f21 100644 --- a/opendaylight/arphandler/pom.xml +++ b/opendaylight/arphandler/pom.xml @@ -8,7 +8,11 @@ 1.4.0-SNAPSHOT ../commons/opendaylight - + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + arphandler 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/clustering/integrationtest/pom.xml b/opendaylight/clustering/integrationtest/pom.xml index e2e27031ca..50d6f5c7d5 100644 --- a/opendaylight/clustering/integrationtest/pom.xml +++ b/opendaylight/clustering/integrationtest/pom.xml @@ -7,6 +7,11 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + clustering.services.integrationtest 0.4.0-SNAPSHOT diff --git a/opendaylight/clustering/services/pom.xml b/opendaylight/clustering/services/pom.xml index 628d2b13e5..d251d45425 100644 --- a/opendaylight/clustering/services/pom.xml +++ b/opendaylight/clustering/services/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + clustering.services 0.4.0-SNAPSHOT diff --git a/opendaylight/clustering/services_implementation/pom.xml b/opendaylight/clustering/services_implementation/pom.xml index 025fbdfccb..c0a8064493 100644 --- a/opendaylight/clustering/services_implementation/pom.xml +++ b/opendaylight/clustering/services_implementation/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + clustering.services-implementation 0.4.0-SNAPSHOT @@ -111,7 +116,7 @@ org.opendaylight.controller sal - 0.4.0-SNAPSHOT + 0.5.0-SNAPSHOT org.jboss.jbossts.jta diff --git a/opendaylight/clustering/stub/pom.xml b/opendaylight/clustering/stub/pom.xml index fd6077d29e..b3c49851f6 100644 --- a/opendaylight/clustering/stub/pom.xml +++ b/opendaylight/clustering/stub/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + clustering.stub 0.4.0-SNAPSHOT diff --git a/opendaylight/clustering/test/pom.xml b/opendaylight/clustering/test/pom.xml index fb1efbb0f1..9952069f01 100644 --- a/opendaylight/clustering/test/pom.xml +++ b/opendaylight/clustering/test/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + clustering.test 0.4.0-SNAPSHOT @@ -48,7 +53,7 @@ org.opendaylight.controller sal - 0.4.0-SNAPSHOT + 0.5.0-SNAPSHOT diff --git a/opendaylight/commons/checkstyle/pom.xml b/opendaylight/commons/checkstyle/pom.xml index c65b89cce5..b442353c39 100644 --- a/opendaylight/commons/checkstyle/pom.xml +++ b/opendaylight/commons/checkstyle/pom.xml @@ -3,4 +3,31 @@ org.opendaylight.controller checkstyle 0.0.1-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + + + http://nexus.opendaylight.org/content + dav:http://nexus.opendaylight.org/content/sites/site + + + + + opendaylight-release + ${nexusproxy}/repositories/opendaylight.release/ + + + + opendaylight-snapshot + ${nexusproxy}/repositories/opendaylight.snapshot/ + + + + website + ${sitedeploy} + + diff --git a/opendaylight/commons/concepts/pom.xml b/opendaylight/commons/concepts/pom.xml index 169a428f15..ab351dbdc5 100644 --- a/opendaylight/commons/concepts/pom.xml +++ b/opendaylight/commons/concepts/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + concepts 0.5.0-SNAPSHOT diff --git a/opendaylight/commons/integrationtest/pom.xml b/opendaylight/commons/integrationtest/pom.xml index 78ab625c93..4ea61d9a16 100644 --- a/opendaylight/commons/integrationtest/pom.xml +++ b/opendaylight/commons/integrationtest/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + commons.integrationtest 0.5.0-SNAPSHOT diff --git a/opendaylight/commons/opendaylight/pom.xml b/opendaylight/commons/opendaylight/pom.xml index 7edee85459..56df36a934 100644 --- a/opendaylight/commons/opendaylight/pom.xml +++ b/opendaylight/commons/opendaylight/pom.xml @@ -15,6 +15,11 @@ 1.0.0-SNAPSHOT ../parent + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + 1.0-alpha-2 @@ -48,6 +53,7 @@ 2013.09.07-SNAPSHOT 3.17.1-GA 1.0-SNAPSHOT + 2.3.2 @@ -59,6 +65,78 @@ + + notduringrelease + + + !DOINGRELEASE + + + + + + + org.opendaylight.yangtools + yang-binding + ${yang.version} + + + org.opendaylight.yangtools + yang-common + ${yang.version} + + + org.opendaylight.yangtools + yang-data-api + ${yang.version} + + + org.opendaylight.yangtools + yang-model-api + ${yang.version} + + + org.opendaylight.yangtools + yang-data-util + ${yang.version} + + + + + + org.opendaylight.yangtools.model + ietf-inet-types + ${ietf-inet-types.version} + + + org.opendaylight.yangtools.model + ietf-yang-types + ${ietf-yang-types.version} + + + org.opendaylight.yangtools + yang-ext + ${yang-ext.version} + + + + + + com.google.guava + guava + ${guava.version} + jar + + + org.javassist + javassist + ${javassist.version} + + + + ${project.version} + + viewbuild @@ -350,6 +428,11 @@ + + org.apache.maven.plugins + maven-release-plugin + ${releaseplugin.version} + org.eclipse.m2e @@ -916,65 +999,5 @@ jersey-json ${jersey.version} - - - - - org.opendaylight.yangtools - yang-binding - ${yang.version} - - - org.opendaylight.yangtools - yang-common - ${yang.version} - - - org.opendaylight.yangtools - yang-data-api - ${yang.version} - - - org.opendaylight.yangtools - yang-model-api - ${yang.version} - - - org.opendaylight.yangtools - yang-data-util - ${yang.version} - - - - - - org.opendaylight.yangtools.model - ietf-inet-types - ${ietf-inet-types.version} - - - org.opendaylight.yangtools.model - ietf-yang-types - ${ietf-yang-types.version} - - - org.opendaylight.yangtools - yang-ext - ${yang-ext.version} - - - - - - com.google.guava - guava - ${guava.version} - jar - - - org.javassist - javassist - ${javassist.version} - diff --git a/opendaylight/commons/parent/pom.xml b/opendaylight/commons/parent/pom.xml index a3fb6b4549..3a2a3da4d6 100644 --- a/opendaylight/commons/parent/pom.xml +++ b/opendaylight/commons/parent/pom.xml @@ -9,10 +9,26 @@ commons.parent 1.0.0-SNAPSHOT pom + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + http://nexus.opendaylight.org/content + dav:http://nexus.opendaylight.org/content/sites/site + 2.3.2 + + + + org.apache.maven.plugins + maven-release-plugin + ${releaseplugin.version} + + + diff --git a/opendaylight/configuration/api/pom.xml b/opendaylight/configuration/api/pom.xml index ff7bbe478e..bef02e4e29 100644 --- a/opendaylight/configuration/api/pom.xml +++ b/opendaylight/configuration/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + configuration 0.4.0-SNAPSHOT diff --git a/opendaylight/configuration/implementation/pom.xml b/opendaylight/configuration/implementation/pom.xml index 232a50586d..c656ce1d6c 100644 --- a/opendaylight/configuration/implementation/pom.xml +++ b/opendaylight/configuration/implementation/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + configuration.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/configuration/integrationtest/pom.xml b/opendaylight/configuration/integrationtest/pom.xml index 39d08c1e3b..51ff2a6703 100644 --- a/opendaylight/configuration/integrationtest/pom.xml +++ b/opendaylight/configuration/integrationtest/pom.xml @@ -9,6 +9,12 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + configuration.integrationtest 0.4.0-SNAPSHOT diff --git a/opendaylight/connectionmanager/api/pom.xml b/opendaylight/connectionmanager/api/pom.xml index b27209d033..4cc14b3d38 100644 --- a/opendaylight/connectionmanager/api/pom.xml +++ b/opendaylight/connectionmanager/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + connectionmanager 0.1.0-SNAPSHOT diff --git a/opendaylight/connectionmanager/implementation/pom.xml b/opendaylight/connectionmanager/implementation/pom.xml index 2c92cf2ae2..5df2b0b26d 100644 --- a/opendaylight/connectionmanager/implementation/pom.xml +++ b/opendaylight/connectionmanager/implementation/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + connectionmanager.implementation 0.1.0-SNAPSHOT diff --git a/opendaylight/containermanager/api/pom.xml b/opendaylight/containermanager/api/pom.xml index c4203bf625..65adf68642 100644 --- a/opendaylight/containermanager/api/pom.xml +++ b/opendaylight/containermanager/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + containermanager 0.4.0-SNAPSHOT diff --git a/opendaylight/containermanager/implementation/pom.xml b/opendaylight/containermanager/implementation/pom.xml index a324fca0d9..f6909ca61b 100644 --- a/opendaylight/containermanager/implementation/pom.xml +++ b/opendaylight/containermanager/implementation/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + containermanager.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/distribution/opendaylight/pom.xml b/opendaylight/distribution/opendaylight/pom.xml index 4dc4e6fa2e..d44cfc5c0e 100644 --- a/opendaylight/distribution/opendaylight/pom.xml +++ b/opendaylight/distribution/opendaylight/pom.xml @@ -26,6 +26,21 @@ + + + notduringrelease + + + !DOINGRELEASE + + + + + ../../sal/yang-prototype + + + + distribution.opendaylight 0.1.0-SNAPSHOT pom @@ -80,9 +95,6 @@ ../../sal/networkconfiguration/api ../../sal/networkconfiguration/implementation - - ../../sal/yang-prototype - ../../web/root ../../web/flows diff --git a/opendaylight/distribution/p2site/pom.xml b/opendaylight/distribution/p2site/pom.xml index e7c7f4906e..2702817800 100644 --- a/opendaylight/distribution/p2site/pom.xml +++ b/opendaylight/distribution/p2site/pom.xml @@ -17,6 +17,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/distribution/parents/README b/opendaylight/distribution/parents/README deleted file mode 100644 index 3d6e3561dc..0000000000 --- a/opendaylight/distribution/parents/README +++ /dev/null @@ -1,14 +0,0 @@ -OVERVIEW -======== -This distribution is built to allow to deploy all the commons parents -in one shot. This is needed because the way how maven works when a -"mvn deploy" is called on a multi-module project, only the modules -that are listed in there are deployed. All the opendaylight modules -has a parent, those parents module will not be deployed when deploying -a distribution hence if someone tries to compile a module without -compiling the whole system it will run in missing parent errors. -To address the issue this distribution will collect all the known -parents and deploy them in one shot. - -The user of this distribution is one of the Jenkins jobs and not -developers. diff --git a/opendaylight/distribution/sdk/pom.xml b/opendaylight/distribution/sdk/pom.xml deleted file mode 100644 index 07ba376a56..0000000000 --- a/opendaylight/distribution/sdk/pom.xml +++ /dev/null @@ -1,115 +0,0 @@ - - - 4.0.0 - - 3.0 - - - - scm:svn:https://wwwin-svn-sjc.cisco.com/eng/csdncontroller/trunk/ - scm:svn:https://wwwin-svn-sjc.cisco.com/eng/csdncontroller/trunk/ - - - org.opendaylight.controller - commons.opendaylight - 1.4.0-SNAPSHOT - ../../commons/opendaylight - - - - - - svnkit-snapshots - svnkit-snapshots - ${nexusproxy}/repositories/svnkit-snapshots/ - - - - org.opendaylight.controller - distribution.sdk - 0.1.0-SNAPSHOT - pom - - ../../clustering/services - ../../containermanager/api - ../../sal/api - - - ../../northbound/commons - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - validate - - create - - - - - false - false - - javasvn - - VersionUnknown - - - - com.google.code.maven-scm-provider-svnjava - maven-scm-provider-svnjava - 2.0.5 - - - org.tmatesoft.svnkit - svnkit - 1.7.4-v1 - - - org.apache.maven.scm - maven-scm-provider-svn-commons - 1.7 - - - - - maven-assembly-plugin - 2.3 - - - distro-assembly - package - - single - - - - src/assemble/bin.xml - - ${project.artifactId}-${build.suffix} - - - - - - - - - org.osgi - org.osgi.compendium - 4.2.0 - - - org.osgi - org.osgi.core - 4.3.0 - - - diff --git a/opendaylight/distribution/sdk/src/assemble/bin.xml b/opendaylight/distribution/sdk/src/assemble/bin.xml deleted file mode 100644 index b2f45c38c9..0000000000 --- a/opendaylight/distribution/sdk/src/assemble/bin.xml +++ /dev/null @@ -1,39 +0,0 @@ - - package - - dir - zip - - false - - - - sdk/ - - ${module.groupId}.${module.artifactId}-${module.version}${dashClassifier?}.${module.extension} - - false - false - - - - - - sdk/ - - org.apache.felix:org.apache.felix.dependencymanager - org.osgi:org.osgi.compendium - org.osgi:org.osgi.core - org.slf4j:slf4j-api - - - ${artifact.groupId}.${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension} - - false - runtime - false - - - diff --git a/opendaylight/forwarding/staticrouting/pom.xml b/opendaylight/forwarding/staticrouting/pom.xml index ea22c4f1ca..458914807c 100644 --- a/opendaylight/forwarding/staticrouting/pom.xml +++ b/opendaylight/forwarding/staticrouting/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + forwarding.staticrouting 0.4.0-SNAPSHOT diff --git a/opendaylight/forwardingrulesmanager/api/pom.xml b/opendaylight/forwardingrulesmanager/api/pom.xml index 5b4f0dd35a..73ba8b95b0 100644 --- a/opendaylight/forwardingrulesmanager/api/pom.xml +++ b/opendaylight/forwardingrulesmanager/api/pom.xml @@ -9,6 +9,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + forwardingrulesmanager 0.4.0-SNAPSHOT diff --git a/opendaylight/forwardingrulesmanager/implementation/pom.xml b/opendaylight/forwardingrulesmanager/implementation/pom.xml index 3519be452a..9170fd303b 100644 --- a/opendaylight/forwardingrulesmanager/implementation/pom.xml +++ b/opendaylight/forwardingrulesmanager/implementation/pom.xml @@ -9,6 +9,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + forwardingrulesmanager.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/forwardingrulesmanager/integrationtest/pom.xml b/opendaylight/forwardingrulesmanager/integrationtest/pom.xml index 4e9a374c4f..fbb5bbd37e 100644 --- a/opendaylight/forwardingrulesmanager/integrationtest/pom.xml +++ b/opendaylight/forwardingrulesmanager/integrationtest/pom.xml @@ -9,6 +9,11 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + forwardingrulesmanager.integrationtest 0.4.0-SNAPSHOT @@ -144,4 +149,4 @@ - \ No newline at end of file + diff --git a/opendaylight/hosttracker/api/pom.xml b/opendaylight/hosttracker/api/pom.xml index 3a35ed06ee..49a3ff5d92 100644 --- a/opendaylight/hosttracker/api/pom.xml +++ b/opendaylight/hosttracker/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + hosttracker 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/hosttracker/implementation/pom.xml b/opendaylight/hosttracker/implementation/pom.xml index b5383842f0..268dd4f67f 100644 --- a/opendaylight/hosttracker/implementation/pom.xml +++ b/opendaylight/hosttracker/implementation/pom.xml @@ -12,6 +12,11 @@ hosttracker.implementation 0.4.0-SNAPSHOT bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/hosttracker/integrationtest/pom.xml b/opendaylight/hosttracker/integrationtest/pom.xml index 0a65f53b38..351e31b11e 100644 --- a/opendaylight/hosttracker/integrationtest/pom.xml +++ b/opendaylight/hosttracker/integrationtest/pom.xml @@ -8,6 +8,11 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + hosttracker.integrationtest 0.4.0-SNAPSHOT diff --git a/opendaylight/hosttracker_new/api/pom.xml b/opendaylight/hosttracker_new/api/pom.xml index c8a8dae167..72b671c0d2 100644 --- a/opendaylight/hosttracker_new/api/pom.xml +++ b/opendaylight/hosttracker_new/api/pom.xml @@ -11,6 +11,11 @@ hosttracker_new 0.4.0-SNAPSHOT bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/hosttracker_new/implementation/pom.xml b/opendaylight/hosttracker_new/implementation/pom.xml index a006c74ae1..af2ea7b347 100644 --- a/opendaylight/hosttracker_new/implementation/pom.xml +++ b/opendaylight/hosttracker_new/implementation/pom.xml @@ -12,6 +12,11 @@ hosttracker_new.implementation 0.4.0-SNAPSHOT bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/logging/bridge/pom.xml b/opendaylight/logging/bridge/pom.xml index 266d83e8e3..a6c4a7cd3e 100644 --- a/opendaylight/logging/bridge/pom.xml +++ b/opendaylight/logging/bridge/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + logging.bridge 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/commons/pom.xml b/opendaylight/northbound/commons/pom.xml index 56da363d3e..6031ddea35 100644 --- a/opendaylight/northbound/commons/pom.xml +++ b/opendaylight/northbound/commons/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + commons.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/flowprogrammer/pom.xml b/opendaylight/northbound/flowprogrammer/pom.xml index 201bf477ee..6319c7c8de 100644 --- a/opendaylight/northbound/flowprogrammer/pom.xml +++ b/opendaylight/northbound/flowprogrammer/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + flowprogrammer.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/hosttracker/pom.xml b/opendaylight/northbound/hosttracker/pom.xml index b588c0715b..ae6900766c 100644 --- a/opendaylight/northbound/hosttracker/pom.xml +++ b/opendaylight/northbound/hosttracker/pom.xml @@ -10,6 +10,11 @@ hosttracker.northbound 0.4.0-SNAPSHOT bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/northbound/integrationtest/pom.xml b/opendaylight/northbound/integrationtest/pom.xml index 210001583b..000b750427 100644 --- a/opendaylight/northbound/integrationtest/pom.xml +++ b/opendaylight/northbound/integrationtest/pom.xml @@ -9,6 +9,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + org.opendaylight.controller northbound.integrationtest diff --git a/opendaylight/northbound/networkconfiguration/bridgedomain/pom.xml b/opendaylight/northbound/networkconfiguration/bridgedomain/pom.xml index 8cb1320043..5993f16787 100644 --- a/opendaylight/northbound/networkconfiguration/bridgedomain/pom.xml +++ b/opendaylight/northbound/networkconfiguration/bridgedomain/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + networkconfig.bridgedomain.northbound 0.0.1-SNAPSHOT diff --git a/opendaylight/northbound/staticrouting/pom.xml b/opendaylight/northbound/staticrouting/pom.xml index fa9341f681..d308fba3d9 100644 --- a/opendaylight/northbound/staticrouting/pom.xml +++ b/opendaylight/northbound/staticrouting/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + forwarding.staticrouting.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/statistics/pom.xml b/opendaylight/northbound/statistics/pom.xml index db4c4a9413..6a5a08e4a9 100644 --- a/opendaylight/northbound/statistics/pom.xml +++ b/opendaylight/northbound/statistics/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + statistics.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/subnets/pom.xml b/opendaylight/northbound/subnets/pom.xml index 43b8f9ebb0..72b0a04c90 100644 --- a/opendaylight/northbound/subnets/pom.xml +++ b/opendaylight/northbound/subnets/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + subnets.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northbound/switchmanager/pom.xml b/opendaylight/northbound/switchmanager/pom.xml index dd7ff9a75b..719688305e 100644 --- a/opendaylight/northbound/switchmanager/pom.xml +++ b/opendaylight/northbound/switchmanager/pom.xml @@ -10,6 +10,11 @@ switchmanager.northbound 0.4.0-SNAPSHOT bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + diff --git a/opendaylight/northbound/topology/pom.xml b/opendaylight/northbound/topology/pom.xml index 007bdbebdc..ec43a5ee63 100644 --- a/opendaylight/northbound/topology/pom.xml +++ b/opendaylight/northbound/topology/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + topology.northbound 0.4.0-SNAPSHOT diff --git a/opendaylight/northboundtest/unit_test_suite/pom.xml b/opendaylight/northboundtest/unit_test_suite/pom.xml index ed4f3300ba..ce22ddf517 100644 --- a/opendaylight/northboundtest/unit_test_suite/pom.xml +++ b/opendaylight/northboundtest/unit_test_suite/pom.xml @@ -7,6 +7,12 @@ 1.4.0-SNAPSHOT ../../../opendaylight/commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + org.opendaylight.controller northboundtest diff --git a/opendaylight/protocol_plugins/openflow/pom.xml b/opendaylight/protocol_plugins/openflow/pom.xml index 373d67dab1..c93d4b61e7 100644 --- a/opendaylight/protocol_plugins/openflow/pom.xml +++ b/opendaylight/protocol_plugins/openflow/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + protocol_plugins.openflow 0.4.0-SNAPSHOT diff --git a/opendaylight/protocol_plugins/stub/pom.xml b/opendaylight/protocol_plugins/stub/pom.xml index 750c39503c..7f556598f1 100644 --- a/opendaylight/protocol_plugins/stub/pom.xml +++ b/opendaylight/protocol_plugins/stub/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + protocol_plugins.stub 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/routing/dijkstra_implementation/pom.xml b/opendaylight/routing/dijkstra_implementation/pom.xml index c0f7afa65c..37d3e2fb19 100644 --- a/opendaylight/routing/dijkstra_implementation/pom.xml +++ b/opendaylight/routing/dijkstra_implementation/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + routing.dijkstra_implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/sal/api/pom.xml b/opendaylight/sal/api/pom.xml index c9f898aa87..32da9f3201 100644 --- a/opendaylight/sal/api/pom.xml +++ b/opendaylight/sal/api/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal 0.5.0-SNAPSHOT diff --git a/opendaylight/sal/connection/api/pom.xml b/opendaylight/sal/connection/api/pom.xml index 45425c929e..c3f40aa42e 100644 --- a/opendaylight/sal/connection/api/pom.xml +++ b/opendaylight/sal/connection/api/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal.connection 0.1.0-SNAPSHOT diff --git a/opendaylight/sal/connection/implementation/pom.xml b/opendaylight/sal/connection/implementation/pom.xml index 2feed0b9a5..44f793a091 100644 --- a/opendaylight/sal/connection/implementation/pom.xml +++ b/opendaylight/sal/connection/implementation/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal.connection.implementation 0.1.0-SNAPSHOT diff --git a/opendaylight/sal/implementation/pom.xml b/opendaylight/sal/implementation/pom.xml index 3eb2379a78..dddc3c3e58 100644 --- a/opendaylight/sal/implementation/pom.xml +++ b/opendaylight/sal/implementation/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/sal/networkconfiguration/api/pom.xml b/opendaylight/sal/networkconfiguration/api/pom.xml index 579c96358f..1f6f9cdf66 100644 --- a/opendaylight/sal/networkconfiguration/api/pom.xml +++ b/opendaylight/sal/networkconfiguration/api/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal.networkconfiguration 0.0.1-SNAPSHOT diff --git a/opendaylight/sal/networkconfiguration/implementation/pom.xml b/opendaylight/sal/networkconfiguration/implementation/pom.xml index 7a9505792d..48e0ff615c 100644 --- a/opendaylight/sal/networkconfiguration/implementation/pom.xml +++ b/opendaylight/sal/networkconfiguration/implementation/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + sal.networkconfiguration.implementation 0.0.1-SNAPSHOT diff --git a/opendaylight/sal/yang-prototype/concepts-lang/pom.xml b/opendaylight/sal/yang-prototype/concepts-lang/pom.xml index e6ed882aaa..07bf3ea498 100644 --- a/opendaylight/sal/yang-prototype/concepts-lang/pom.xml +++ b/opendaylight/sal/yang-prototype/concepts-lang/pom.xml @@ -6,11 +6,30 @@ org.opendaylight.controller 0.5-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + + + + 2.3.2 + 4.0.0 concepts-lang jar ${project.artifactId} ${project.artifactId} - + + + + + org.apache.maven.plugins + maven-release-plugin + ${releaseplugin.version} + + + + diff --git a/opendaylight/sal/yang-prototype/pom.xml b/opendaylight/sal/yang-prototype/pom.xml index 525d8d1795..555c94ed7c 100644 --- a/opendaylight/sal/yang-prototype/pom.xml +++ b/opendaylight/sal/yang-prototype/pom.xml @@ -10,6 +10,11 @@ yang-prototype + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + sal diff --git a/opendaylight/sal/yang-prototype/sal/model/model-flow-statistics/pom.xml b/opendaylight/sal/yang-prototype/sal/model/model-flow-statistics/pom.xml index 98617a8f0d..10534fd524 100644 --- a/opendaylight/sal/yang-prototype/sal/model/model-flow-statistics/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/model/model-flow-statistics/pom.xml @@ -6,6 +6,11 @@ org.opendaylight.controller.model 1.0-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + 4.0.0 model-flow-statistics @@ -23,4 +28,4 @@ bundle - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/model/model-flow/pom.xml b/opendaylight/sal/yang-prototype/sal/model/model-flow/pom.xml index 7c878fa302..054ae4b7b7 100644 --- a/opendaylight/sal/yang-prototype/sal/model/model-flow/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/model/model-flow/pom.xml @@ -6,6 +6,11 @@ org.opendaylight.controller.model 1.0-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + 4.0.0 model-flow @@ -18,4 +23,4 @@ bundle - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/model/model-inventory/pom.xml b/opendaylight/sal/yang-prototype/sal/model/model-inventory/pom.xml index 0de70e3b55..341caf5cc6 100644 --- a/opendaylight/sal/yang-prototype/sal/model/model-inventory/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/model/model-inventory/pom.xml @@ -6,8 +6,13 @@ org.opendaylight.controller.model 1.0-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + 4.0.0 model-inventory bundle - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/model/pom.xml b/opendaylight/sal/yang-prototype/sal/model/pom.xml index 4ce4dcb3a7..35279be81e 100644 --- a/opendaylight/sal/yang-prototype/sal/model/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/model/pom.xml @@ -6,6 +6,11 @@ sal-parent 1.0-SNAPSHOT + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + 4.0.0 org.opendaylight.controller.model diff --git a/opendaylight/sal/yang-prototype/sal/pom.xml b/opendaylight/sal/yang-prototype/sal/pom.xml index a2690826ee..45743160fb 100644 --- a/opendaylight/sal/yang-prototype/sal/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/pom.xml @@ -5,6 +5,11 @@ sal-parent 1.0-SNAPSHOT pom + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + sal-common @@ -22,6 +27,7 @@ http://nexus.opendaylight.org/content 0.5.7-SNAPSHOT 2.4.0 + 2.3.2 @@ -188,6 +194,15 @@ + + + + org.apache.maven.plugins + maven-release-plugin + ${releaseplugin.version} + + + org.apache.felix diff --git a/opendaylight/sal/yang-prototype/sal/sal-binding-api/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-binding-api/pom.xml index d94a659afa..9d914817b8 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-binding-api/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-binding-api/pom.xml @@ -8,6 +8,11 @@ sal-binding-api bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -29,4 +34,4 @@ 5.0.0 - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/pom.xml index 70f2e6c378..b8ba605524 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/pom.xml @@ -8,6 +8,11 @@ sal-binding-broker-impl bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -106,4 +111,4 @@ 2.4.2 - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-binding-spi/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-binding-spi/pom.xml index 8d0ddad9fe..22397a80b4 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-binding-spi/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-binding-spi/pom.xml @@ -7,6 +7,11 @@ 1.0-SNAPSHOT sal-binding-spi + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -25,4 +30,4 @@ 0.5-SNAPSHOT - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-broker-impl/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-broker-impl/pom.xml index 0bb4041b9f..fa35363357 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-broker-impl/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-broker-impl/pom.xml @@ -7,6 +7,12 @@ 1.0-SNAPSHOT sal-broker-impl + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + + org.opendaylight.controller @@ -33,4 +39,4 @@ jar - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-common-util/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-common-util/pom.xml index f1bed65fd1..a1f396ebf2 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-common-util/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-common-util/pom.xml @@ -7,6 +7,11 @@ 1.0-SNAPSHOT sal-common-util + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -21,4 +26,4 @@ bundle - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-common/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-common/pom.xml index a4b2c7d51b..1de22ac853 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-common/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-common/pom.xml @@ -7,9 +7,14 @@ 1.0-SNAPSHOT sal-common + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + bundle - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-core-api/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-core-api/pom.xml index 15e90ec8c5..ce91b8ea20 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-core-api/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-core-api/pom.xml @@ -7,6 +7,11 @@ 1.0-SNAPSHOT sal-core-api + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -24,4 +29,4 @@ yang-model-api - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-core-demo/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-core-demo/pom.xml index 1162b0d99a..a99425c528 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-core-demo/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-core-demo/pom.xml @@ -7,6 +7,11 @@ 1.0-SNAPSHOT sal-core-demo + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -55,4 +60,4 @@ - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-core-spi/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-core-spi/pom.xml index aab58123f4..55935454df 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-core-spi/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-core-spi/pom.xml @@ -6,6 +6,11 @@ 1.0-SNAPSHOT sal-core-spi + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + @@ -14,4 +19,4 @@ 1.0-SNAPSHOT - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/sal-data-api/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-data-api/pom.xml index eeea2920d5..6b73e29e7d 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-data-api/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-data-api/pom.xml @@ -6,4 +6,10 @@ 1.0-SNAPSHOT sal-data-api - \ No newline at end of file + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + + + diff --git a/opendaylight/sal/yang-prototype/sal/sal-schema-repository-api/pom.xml b/opendaylight/sal/yang-prototype/sal/sal-schema-repository-api/pom.xml index b5c42ed74a..a6e5c78628 100644 --- a/opendaylight/sal/yang-prototype/sal/sal-schema-repository-api/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/sal-schema-repository-api/pom.xml @@ -6,10 +6,16 @@ 1.0-SNAPSHOT sal-schema-repository-api + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + + org.opendaylight.controller yang-model-api - \ No newline at end of file + diff --git a/opendaylight/sal/yang-prototype/sal/samples/pom.xml b/opendaylight/sal/yang-prototype/sal/samples/pom.xml index dc06185b28..7bd9a3a5ba 100644 --- a/opendaylight/sal/yang-prototype/sal/samples/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/samples/pom.xml @@ -8,6 +8,12 @@ pom sal-samples + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + + toaster toaster-consumer diff --git a/opendaylight/sal/yang-prototype/sal/samples/toaster-consumer/pom.xml b/opendaylight/sal/yang-prototype/sal/samples/toaster-consumer/pom.xml index 914accde3b..49cf97d11b 100644 --- a/opendaylight/sal/yang-prototype/sal/samples/toaster-consumer/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/samples/toaster-consumer/pom.xml @@ -8,6 +8,11 @@ sample-toaster-consumer bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + diff --git a/opendaylight/sal/yang-prototype/sal/samples/toaster-it/pom.xml b/opendaylight/sal/yang-prototype/sal/samples/toaster-it/pom.xml index edce9a02d4..eedeff936c 100644 --- a/opendaylight/sal/yang-prototype/sal/samples/toaster-it/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/samples/toaster-it/pom.xml @@ -7,6 +7,11 @@ 1.0-SNAPSHOT sample-toaster-it + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + 3.0.0 diff --git a/opendaylight/sal/yang-prototype/sal/samples/toaster-provider/pom.xml b/opendaylight/sal/yang-prototype/sal/samples/toaster-provider/pom.xml index 49d142c79b..92c836a54e 100644 --- a/opendaylight/sal/yang-prototype/sal/samples/toaster-provider/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/samples/toaster-provider/pom.xml @@ -8,6 +8,11 @@ sample-toaster-provider bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + diff --git a/opendaylight/sal/yang-prototype/sal/samples/toaster/pom.xml b/opendaylight/sal/yang-prototype/sal/samples/toaster/pom.xml index d434275f0f..b57fad1576 100644 --- a/opendaylight/sal/yang-prototype/sal/samples/toaster/pom.xml +++ b/opendaylight/sal/yang-prototype/sal/samples/toaster/pom.xml @@ -8,6 +8,11 @@ sample-toaster bundle + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL + diff --git a/opendaylight/samples/loadbalancer/pom.xml b/opendaylight/samples/loadbalancer/pom.xml index 0ab5e4bc99..81a078a35b 100644 --- a/opendaylight/samples/loadbalancer/pom.xml +++ b/opendaylight/samples/loadbalancer/pom.xml @@ -9,6 +9,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + samples.loadbalancer 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/samples/northbound/loadbalancer/pom.xml b/opendaylight/samples/northbound/loadbalancer/pom.xml index ed078a0551..3b0ae0cdeb 100644 --- a/opendaylight/samples/northbound/loadbalancer/pom.xml +++ b/opendaylight/samples/northbound/loadbalancer/pom.xml @@ -7,6 +7,12 @@ 1.4.0-SNAPSHOT ../../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + samples.loadbalancer.northbound 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/samples/simpleforwarding/pom.xml b/opendaylight/samples/simpleforwarding/pom.xml index 2d7c2f22ec..552ff88342 100644 --- a/opendaylight/samples/simpleforwarding/pom.xml +++ b/opendaylight/samples/simpleforwarding/pom.xml @@ -7,6 +7,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + samples.simpleforwarding 0.4.0-SNAPSHOT diff --git a/opendaylight/security/pom.xml b/opendaylight/security/pom.xml index eb818ffcc2..3c2cb8ef6d 100644 --- a/opendaylight/security/pom.xml +++ b/opendaylight/security/pom.xml @@ -9,6 +9,11 @@ 1.4.0-SNAPSHOT ../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + security 0.4.0-SNAPSHOT diff --git a/opendaylight/statisticsmanager/api/pom.xml b/opendaylight/statisticsmanager/api/pom.xml index 1bf1c7ca74..a755f83560 100644 --- a/opendaylight/statisticsmanager/api/pom.xml +++ b/opendaylight/statisticsmanager/api/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + statisticsmanager 0.4.0-SNAPSHOT bundle @@ -59,4 +65,4 @@ 0.4.0-SNAPSHOT - \ No newline at end of file + diff --git a/opendaylight/statisticsmanager/implementation/pom.xml b/opendaylight/statisticsmanager/implementation/pom.xml index 7697493026..9b3dd0e8e2 100644 --- a/opendaylight/statisticsmanager/implementation/pom.xml +++ b/opendaylight/statisticsmanager/implementation/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + statisticsmanager.implementation 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/statisticsmanager/integrationtest/pom.xml b/opendaylight/statisticsmanager/integrationtest/pom.xml index 228626383e..ebe9365320 100644 --- a/opendaylight/statisticsmanager/integrationtest/pom.xml +++ b/opendaylight/statisticsmanager/integrationtest/pom.xml @@ -9,6 +9,12 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + statisticsmanager.integrationtest 0.4.0-SNAPSHOT @@ -137,4 +143,4 @@ - \ No newline at end of file + diff --git a/opendaylight/switchmanager/api/pom.xml b/opendaylight/switchmanager/api/pom.xml index dd3ccfa5c4..607c42858e 100644 --- a/opendaylight/switchmanager/api/pom.xml +++ b/opendaylight/switchmanager/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + switchmanager 0.5.0-SNAPSHOT diff --git a/opendaylight/switchmanager/implementation/pom.xml b/opendaylight/switchmanager/implementation/pom.xml index f86f521bd2..1b09f3c34d 100644 --- a/opendaylight/switchmanager/implementation/pom.xml +++ b/opendaylight/switchmanager/implementation/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + switchmanager.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/switchmanager/integrationtest/pom.xml b/opendaylight/switchmanager/integrationtest/pom.xml index af12bbee51..d057c8e3ab 100644 --- a/opendaylight/switchmanager/integrationtest/pom.xml +++ b/opendaylight/switchmanager/integrationtest/pom.xml @@ -8,6 +8,11 @@ 0.5.0-SNAPSHOT ../../commons/integrationtest + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + switchmanager.integrationtest 0.4.0-SNAPSHOT diff --git a/opendaylight/topologymanager/pom.xml b/opendaylight/topologymanager/pom.xml index 65fabb126c..98bc0e42c8 100755 --- a/opendaylight/topologymanager/pom.xml +++ b/opendaylight/topologymanager/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + topologymanager 0.4.0-SNAPSHOT diff --git a/opendaylight/usermanager/api/pom.xml b/opendaylight/usermanager/api/pom.xml index 311465e3ab..c5f78ab56c 100644 --- a/opendaylight/usermanager/api/pom.xml +++ b/opendaylight/usermanager/api/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + usermanager 0.4.0-SNAPSHOT diff --git a/opendaylight/usermanager/implementation/pom.xml b/opendaylight/usermanager/implementation/pom.xml index 0350dc5b63..fb96928745 100644 --- a/opendaylight/usermanager/implementation/pom.xml +++ b/opendaylight/usermanager/implementation/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + usermanager.implementation 0.4.0-SNAPSHOT diff --git a/opendaylight/web/brandfragment/pom.xml b/opendaylight/web/brandfragment/pom.xml index 43f8c53d7d..5a1968d416 100644 --- a/opendaylight/web/brandfragment/pom.xml +++ b/opendaylight/web/brandfragment/pom.xml @@ -9,6 +9,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + org.opendaylight.controller web.brandfragment diff --git a/opendaylight/web/devices/pom.xml b/opendaylight/web/devices/pom.xml index 116640cd3d..64e8ff5e01 100644 --- a/opendaylight/web/devices/pom.xml +++ b/opendaylight/web/devices/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + devices.web 0.4.0-SNAPSHOT diff --git a/opendaylight/web/flows/pom.xml b/opendaylight/web/flows/pom.xml index 922d4a9a52..52b3ef3de3 100644 --- a/opendaylight/web/flows/pom.xml +++ b/opendaylight/web/flows/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + flows.web 0.4.0-SNAPSHOT bundle @@ -73,7 +79,7 @@ org.springframework.web.servlet.config, org.springframework.web.servlet.view, org.springframework.web.filter, - org.springframework.web.context + org.springframework.web.context /controller/web/flows diff --git a/opendaylight/web/root/pom.xml b/opendaylight/web/root/pom.xml index 809751d443..6000efadc7 100644 --- a/opendaylight/web/root/pom.xml +++ b/opendaylight/web/root/pom.xml @@ -8,6 +8,11 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + web 0.4.0-SNAPSHOT diff --git a/opendaylight/web/topology/pom.xml b/opendaylight/web/topology/pom.xml index 593282068d..f2f7a3e59e 100644 --- a/opendaylight/web/topology/pom.xml +++ b/opendaylight/web/topology/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + topology.web 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/web/troubleshoot/pom.xml b/opendaylight/web/troubleshoot/pom.xml index db02937a00..38b82494ea 100644 --- a/opendaylight/web/troubleshoot/pom.xml +++ b/opendaylight/web/troubleshoot/pom.xml @@ -8,6 +8,12 @@ 1.4.0-SNAPSHOT ../../commons/opendaylight + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + troubleshoot.web 0.4.0-SNAPSHOT bundle diff --git a/opendaylight/distribution/parents/pom.xml b/pom.xml similarity index 50% rename from opendaylight/distribution/parents/pom.xml rename to pom.xml index 53877173ad..ebb97a63de 100644 --- a/opendaylight/distribution/parents/pom.xml +++ b/pom.xml @@ -5,20 +5,22 @@ 3.0 - + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + org.opendaylight.controller - commons.opendaylight - 1.4.0-SNAPSHOT - ../../commons/opendaylight + commons.parent + 1.0.0-SNAPSHOT + opendaylight/commons/parent - distribution.parents + + releasepom 0.1.0-SNAPSHOT pom - ../../commons/concepts - ../../commons/integrationtest - ../../commons/opendaylight - ../../../third-party/commons/thirdparty + opendaylight/distribution/opendaylight diff --git a/third-party/commons/thirdparty/pom.xml b/third-party/commons/thirdparty/pom.xml index 7883312b00..6be5e8690f 100644 --- a/third-party/commons/thirdparty/pom.xml +++ b/third-party/commons/thirdparty/pom.xml @@ -9,6 +9,11 @@ commons.thirdparty 1.1.0-SNAPSHOT pom + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + https://sonar.opendaylight.org/ @@ -19,6 +24,7 @@ UTF-8 2.3.2 2.13 + 2.3.2 @@ -79,6 +85,11 @@ + + org.apache.maven.plugins + maven-release-plugin + ${releaseplugin.version} + org.apache.maven.plugins maven-site-plugin diff --git a/third-party/jersey-servlet/pom.xml b/third-party/jersey-servlet/pom.xml index 8c7d8e80b1..55282a7fb9 100644 --- a/third-party/jersey-servlet/pom.xml +++ b/third-party/jersey-servlet/pom.xml @@ -7,6 +7,12 @@ 1.1.0-SNAPSHOT ../commons/thirdparty + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + 4.0.0 org.opendaylight.controller.thirdparty com.sun.jersey.jersey-servlet diff --git a/third-party/net.sf.jung2/pom.xml b/third-party/net.sf.jung2/pom.xml index b8f7155779..672814fa72 100644 --- a/third-party/net.sf.jung2/pom.xml +++ b/third-party/net.sf.jung2/pom.xml @@ -7,6 +7,12 @@ 1.1.0-SNAPSHOT ../commons/thirdparty + + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main + + 4.0.0 org.opendaylight.controller.thirdparty net.sf.jung2 diff --git a/third-party/openflowj/pom.xml b/third-party/openflowj/pom.xml index f927bf4db8..23f9897fd0 100644 --- a/third-party/openflowj/pom.xml +++ b/third-party/openflowj/pom.xml @@ -35,8 +35,9 @@ - scm:git://gitosis.stanford.edu:openflowj.git - https://openflow.stanford.edu/fisheye/browse/OpenFlowJ + scm:git:ssh://git.opendaylight.org:29418/controller.git + scm:git:ssh://git.opendaylight.org:29418/controller.git + https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main UTF-8 @@ -46,10 +47,11 @@ release-sign-artifacts - - performRelease - true - + + + + +