security-admin-frontend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.n2oapp.framework.security</groupId> <artifactId>security-admin-frontend</artifactId> <version>8.0.13</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> <artifactId>security-admin-frontend</artifactId> <packaging>jar</packaging> <parent> <artifactId>security-admin</artifactId> <groupId>net.n2oapp.framework.security</groupId> <version>8.0.13</version> <relativePath>..</relativePath> </parent> <properties> <maven.deploy.skip>true</maven.deploy.skip> <jacoco.skip>false</jacoco.skip> </properties> <dependencies> <dependency> <groupId>net.n2oapp.framework.security</groupId> <artifactId>security-client-starter</artifactId> <version>${project.version}</version> <type>pom</type> </dependency> <dependency> <groupId>net.n2oapp.framework.security</groupId> <artifactId>security-admin-web</artifactId> <version>${project.version}</version> </dependency> <!-- PLATFORM--> <dependency> <groupId>net.n2oapp.platform</groupId> <artifactId>n2o-platform-starter-web</artifactId> <type>pom</type> </dependency> <dependency> <groupId>net.n2oapp.platform</groupId> <artifactId>n2o-platform-starter-jaxrs-server</artifactId> <type>pom</type> </dependency> <dependency> <groupId>net.n2oapp.platform</groupId> <artifactId>n2o-platform-starter-ms</artifactId> <type>pom</type> </dependency> <!-- N2O --> <dependency> <groupId>net.n2oapp.framework</groupId> <artifactId>n2o-web</artifactId> <version>${n2o.version}</version> </dependency> <!-- /N2O --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.n2oapp.platform</groupId> <artifactId>n2o-platform-starter-test</artifactId> <type>pom</type> <scope>test</scope> </dependency> </dependencies> <build> <finalName>access-web</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> <configuration> <executable>false</executable> </configuration> </plugin> </plugins> </build> </project>