-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert odl-apache-shiro to template-feature-parent
Using a template here allows us to properly disconnect build-time dependency graph from packaged bundles: we no longer need to specify exclusions all over the place. Change-Id: Ia8f3c32f65ae00212bd397f35b092974409af3c7 Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
- Loading branch information
Showing
8 changed files
with
73 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<features xmlns="http://karaf.apache.org/xmlns/features/v1.6.0" name="odl-apache-shiro"> | ||
<repository>mvn:org.opendaylight.odlparent/odl-servlet-api/{{versionAsInProject}}/xml/features</repository> | ||
<feature name="odl-apache-shiro"> | ||
<feature version="[14,15)">odl-servlet-api</feature> | ||
<bundle>mvn:org.opendaylight.aaa/repackaged-shiro/{{versionAsInProject}}</bundle> | ||
<bundle>mvn:commons-beanutils/commons-beanutils/{{versionAsInProject}}</bundle> | ||
<bundle>mvn:commons-collections/commons-collections/{{versionAsInProject}}</bundle> | ||
<bundle>mvn:org.owasp.encoder/encoder/{{versionAsInProject}}</bundle> | ||
</feature> | ||
</features> |
10 changes: 0 additions & 10 deletions
10
features/odl-apache-shiro/src/main/history/dependencies.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2024 PANTHEON.tech, s.r.o. and others. All rights reserved. | ||
This program and the accompanying materials are made available under the | ||
terms of the Eclipse Public License v1.0 which accompanies this distribution, | ||
and is available at http://www.eclipse.org/legal/epl-v10.html | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.opendaylight.odlparent</groupId> | ||
<artifactId>template-feature-parent</artifactId> | ||
<version>14.0.5</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
<groupId>org.opendaylight.aaa</groupId> | ||
<artifactId>template-feature-parent</artifactId> | ||
<version>0.21.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>${project.artifactId}</name> | ||
<description>Feature parent (based on template-feature-parent)</description> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.opendaylight.aaa</groupId> | ||
<artifactId>aaa-parent</artifactId> | ||
<version>0.21.0-SNAPSHOT</version> | ||
<scope>import</scope> | ||
<type>pom</type> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<scm> | ||
<connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection> | ||
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url> | ||
</scm> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters