security.security-configuration.3.3.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-configuration Show documentation
Show all versions of security-configuration Show documentation
Defines how the security system is configured, which realms are used, the anonymous username/password, and if security is enabled or not.
The newest version!
<!-- Copyright (c) 2007-2013 Sonatype, Inc. All rights reserved. This program is licensed to you under the Apache License Version 2.0, and you may not use this file except in compliance with the Apache License Version 2.0. You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the Apache License Version 2.0 is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>security-parent</artifactId> <groupId>org.sonatype.security</groupId> <version>3.3</version> </parent> <artifactId>security-configuration</artifactId> <description>Defines how the security system is configured, which realms are used, the anonymous username/password, and if security is enabled or not.</description> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.sonatype.sisu</groupId> <artifactId>sisu-inject-bean</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.sonatype.configuration</groupId> <artifactId>base-configuration</artifactId> </dependency> <dependency> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-cipher</artifactId> </dependency> <!-- TESTS --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <executions> <execution> <id>security-configuraiton.xml</id> <goals> <goal>java</goal> <goal>xsd</goal> <goal>xpp3-reader</goal> <goal>xpp3-writer</goal> </goals> <configuration> <version>2.0.4</version> <models> <model>src/main/mdo/security-configuration.xml</model> </models> <packagedVersions> <packagedVersion>2.0.3</packagedVersion> </packagedVersions> </configuration> </execution> </executions> <configuration> <packageWithVersion>false</packageWithVersion> </configuration> </plugin> <plugin> <!-- TODO remove when upgrade generator is merged into modello --> <groupId>org.sonatype.plugins</groupId> <artifactId>modello-plugin-upgrade</artifactId> <version>1.0</version> <executions> <execution> <id>security-configuration-upgrade</id> <goals> <goal>upgrade</goal> </goals> <configuration> <version>2.0.4</version> <models> <model>src/main/mdo/security-configuration.xml</model> </models> <packagedVersions> <packagedVersion>2.0.3</packagedVersion> </packagedVersions> </configuration> </execution> </executions> <configuration> <packageWithVersion>false</packageWithVersion> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>m2e</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.sonatype.plugins</groupId> <artifactId>modello-plugin-upgrade</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>upgrade</goal> </goals> </pluginExecutionFilter> <action> <execute /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>