nuiton-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nuiton.web</groupId> <artifactId>nuiton-security</artifactId> <version>1.20</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L Nuiton Web :: Nuiton Security %% Copyright (C) 2008 - 2016 CodeLutin, Tony Chemit %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Lesser Public License for more details. You should have received a copy of the GNU General Lesser Public License along with this program. If not, see <http://www.gnu.org/licenses/lgpl-3.0.html>. #L% --> <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>org.nuiton.web</groupId> <artifactId>nuiton-web-parent</artifactId> <version>1.20</version> </parent> <artifactId>nuiton-security</artifactId> <name>Nuiton Web :: Nuiton Security</name> <description>Security module based on ToPIA</description> <properties> <!-- Post Release configuration --> <!-- FIXME true because issues are no longer on redmine but on gitlab --> <skipPostRelease>true</skipPostRelease> </properties> <dependencies> <dependency> <groupId>org.nuiton.topia</groupId> <artifactId>topia-persistence</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-web</artifactId> </dependency> <dependency> <groupId>org.nuiton</groupId> <artifactId>nuiton-utils</artifactId> </dependency> <dependency> <groupId>org.nuiton</groupId> <artifactId>nuiton-config</artifactId> </dependency> <dependency> <groupId>org.nuiton.i18n</groupId> <artifactId>nuiton-i18n</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.nuiton.i18n</groupId> <artifactId>i18n-maven-plugin</artifactId> <executions> <execution> <goals> <goal>parserJava</goal> <goal>parserValidation</goal> <goal>gen</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.nuiton.eugene</groupId> <artifactId>eugene-maven-plugin</artifactId> <executions> <execution> <id>eugene-generation</id> <phase>generate-sources</phase> <configuration> <inputs>zargo</inputs> <fullPackagePath>org.nuiton.web</fullPackagePath> <defaultPackage>org.nuiton.web</defaultPackage> <templates>org.nuiton.topia.templates.TopiaMetaTransformer</templates> <failIfUnsafe>false</failIfUnsafe> </configuration> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.nuiton.topia</groupId> <artifactId>topia-templates</artifactId> <version>${topiaVersion}</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> </plugins> </build> </project>