security-integration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wiredi</groupId> <artifactId>security-integration</artifactId> <version>1.0.0-rc4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.wiredi</groupId> <artifactId>integrations</artifactId> <version>1.0.0-rc4</version> </parent> <groupId>com.wiredi</groupId> <artifactId>security-integration</artifactId> <version>1.0.0-rc4</version> <name>WireDI Integration - Security</name> <description>Easy and simple di using annotation processors</description> <url>https://github.com/ThorbenKuck/WireDI</url> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>com.wiredi</groupId> <artifactId>security</artifactId> </dependency> <dependency> <groupId>com.wiredi</groupId> <artifactId>runtime-environment</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <parameters>true</parameters> <annotationProcessorPaths> <processorPath> <groupId>com.wiredi</groupId> <artifactId>processors</artifactId> <version>1.0.0-rc4</version> </processorPath> <annotationProcessorPath> <groupId>com.wiredi</groupId> <artifactId>processors</artifactId> <version>1.0.0-rc4</version> </annotationProcessorPath> <path> <groupId>com.wiredi</groupId> <artifactId>processors</artifactId> <version>1.0.0-rc4</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>