xacml-sdk-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.authzforce</groupId> <artifactId>xacml-sdk-model</artifactId> <version>5.0.0</version> </dependency>
<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.ow2.authzforce</groupId> <artifactId>xacml-sdk</artifactId> <version>5.0.0</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <copyrightOwner>Thales Services - ThereSIS</copyrightOwner> <jdom.version>2.0.5</jdom.version> <slf4j.version>1.6.6</slf4j.version> </properties> <inceptionYear>2013</inceptionYear> <artifactId>xacml-sdk-model</artifactId> <name>AuthZForce :: XACML SDK :: MODEL</name> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>${jdom.version}</version> </dependency> <!-- XACML Dependencies --> <dependency> <groupId>org.ow2.authzforce</groupId> <artifactId>${artifactId.prefix}-xacml-model</artifactId> </dependency> <!-- /XACML Dependencies --> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>gmaven-plugin</artifactId> <version>1.5</version> <executions> <execution> <goals> <goal>execute</goal> </goals> <configuration> <source> import java.util.Date import java.text.MessageFormat def vartimestamp = MessageFormat.format("{0,date,yyyy}", new Date()) project.properties['currentYear'] = vartimestamp </source> </configuration> </execution> </executions> </plugin> <plugin> <!-- Thales's license Headers --> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <!-- Template location --> <header>src/main/resources/fileHeader.apache2.txt</header> <properties> <!-- Values to be substituted in template --> <h_inceptionYear>${project.inceptionYear}</h_inceptionYear> <h_currentYear>${currentYear}</h_currentYear> <h_copyrightOwner>${copyrightOwner}</h_copyrightOwner> </properties> <strictCheck>true</strictCheck> <excludes> <exclude>**/*.html</exclude> <exclude>**/*.xml</exclude> <exclude>**/*.txt</exclude> <exclude>**/*.ec</exclude> <exclude>**/*.log</exclude> <exclude>**/*.css</exclude> <exclude>**/*.js</exclude> <exclude>**/*.jsp</exclude> <exclude>**/*.md</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.gitignore</exclude> <exclude>src/test/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> <includes> <include>src/main/java/com/thalesgroup/**</include> <include>src/main/java/com/sun/xacml/xacmlv3/**</include> <include>src/main/java/com/sun/cond/xacmlv3/**</include> <include>src/main/java/com/sun/ctx/xacmlv3/**</include> <include>src/main/java/com/sun/xacml/CacheManager.java</include> <include>src/main/java/com/sun/xacml/ObligationExpressions.java</include> <include>src/main/java/com/sun/xacml/combine/PermitUnlessDenyPolicyAlg</include> <include>src/main/java/com/sun/xacml/combine/PermitUnlessDenyRuleAlg</include> <include>src/main/java/com/sun/xacml/combine/DenyUnlessPermitPolicyAlg</include> <include>src/main/java/com/sun/xacml/combine/DenyUnlessPermitRuleAlg</include> <include>src/main/java/com/sun/xacml/finder/impl/MultipleResourceFinder.java</include> </includes> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>default</id> <phase>compile</phase> <!-- <goals> --> <!-- <goal>compile</goal> --> <!-- <goal>test-compile</goal> --> <!-- </goals> --> </execution> </executions> </plugin> </plugins> </build> </project>