bundle-spring-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.together.libraries</groupId>
<artifactId>bundle-spring-security</artifactId>
<version>5.5.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<name>TP-Bundle: Spring Security</name>
<description>Bill of Materials</description>
<inceptionYear>01/2013</inceptionYear>
<url>https://elmar-dott.com</url>
<groupId>io.github.together.libraries</groupId>
<artifactId>bundle-spring-security</artifactId>
<version>5.5.2</version>
<packaging>pom</packaging>
<properties>
<release.repo>http://192.168.0.8:8082/repository/maven-snapshots/</release.repo>
<snapshot.repro>http://192.168.0.8:8082/repository/maven-releases/</snapshot.repro>
<site.repro>file:///home/wiki/local/apache2/htdocs/mext</site.repro>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:https://github.com/ElmarDott/TP-CM.git</connection>
<developerConnection>scm:git:file://media/veracrypt1/repositories/git-togetherPlatform/Modules/CM</developerConnection>
<url>scm:git:https://github.com/ElmarDott/TP-CM.git</url>
</scm>
<developers>
<developer>
<id>CEO</id>
<name>Elmar Dott</name>
<roles>
<role>CEO</role>
<role>Architect</role>
<role>Build Maanager</role>
<role>Lead Developer</role>
</roles>
<email>elmar.dott@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License - Version 3</name>
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
</license>
</licenses>
<!-- Deploy -->
<distributionManagement>
<snapshotRepository>
<id>nexus-oss</id>
<url>${release.repo}</url>
</snapshotRepository>
<repository>
<id>nexus-oss</id>
<url>${snapshot.repro}</url>
</repository>
<site>
<id>local-oss</id>
<name>Local deployed site</name>
<url>${site.repro}</url>
</site>
</distributionManagement>
<!-- ================================================================== -->
<!-- =========================== PROFILES ========================= -->
<!-- ================================================================== -->
<profiles>
<profile>
<id>release</id>
<build>
<defaultGoal>deploy</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>togetherPlatform</keyname>
<passphraseServerId>togetherPlatform</passphraseServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>