isy-benutzerverwaltung-gui-tomahawk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.bund.bva.isyfact.benutzerverwaltung</groupId> <artifactId>isy-benutzerverwaltung-gui-tomahawk</artifactId> <version>1.7.0</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> <parent> <groupId>de.bund.bva.isyfact.benutzerverwaltung</groupId> <artifactId>isy-benutzerverwaltung-parent</artifactId> <version>1.7.0</version> </parent> <artifactId>isy-benutzerverwaltung-gui-tomahawk</artifactId> <packaging>jar</packaging> <name>IsyFact Benutzerverwaltung GUI mit Tomahawk</name> <dependencies> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-konfiguration</artifactId> </dependency> <!-- Benoetigt fuer AufrufKontextTo --> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-aufrufkontext</artifactId> </dependency> <!-- Bibliothek mit den MBeans für die Überwachung --> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-ueberwachung</artifactId> </dependency> <!-- Bibliothek fuer Autorisierung --> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-sicherheit</artifactId> </dependency> <!-- Servlet-API nicht ins WAR-File --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- Spring Dependencies --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- Benoetigt u.a. fuer JMX --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- Benoetigt fuer AOP --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> </dependency> <!-- Benoetigt fuer Modul-Testfaelle im SpringContext --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <!-- Benoetigt fuer InitializingBeans --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <!-- Benoetigt fuer SpringDispatcher Servlet --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <!-- Benoetigt fuer HttpInvoker --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <!-- Spring Security --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> <!-- EL wird ab Tomcat 6 bereits durch den Tomcat bereitgestellt. Daher muss sie explizit als vorhanden deklariert werden, --> <dependency> <groupId>javax.el</groupId> <artifactId>javax.el-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.dozermapper</groupId> <artifactId>dozer-core</artifactId> </dependency> <!-- PLIS-Erweiterungen fuer Spring Web Flow und JSF --> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-web</artifactId> </dependency> <!-- Isy-Logging --> <dependency> <groupId>de.bund.bva.isyfact</groupId> <artifactId>isy-logging</artifactId> </dependency> <dependency> <groupId>de.bund.bva.isyfact.benutzerverwaltung</groupId> <artifactId>isy-benutzerverwaltung-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>de.bund.bva.isyfact.benutzerverwaltung</groupId> <artifactId>isy-benutzerverwaltung-sicherheit</artifactId> <version>${project.version}</version> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>