herasaf-xacml-core
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.herasaf.xacml.core</groupId> <artifactId>herasaf-xacml-core</artifactId> <version>2.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.herasaf.xacml.core</groupId> <artifactId>herasaf-xacml-core</artifactId> <packaging>bundle</packaging> <version>2.0.4</version> <name>HERAS-AF XACML :: Core</name> <description>The core component contains the evaluation engine. This means: combining algorithms, functions, data types, and API interfaces.</description> <url>https://github.com/prolutionsGmbH/herasaf-xacml-core</url> <inceptionYear>2006</inceptionYear> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <organization> <name>prolutions GmbH</name> <url>https://www.prolutions.ch</url> </organization> <developers> <developer> <name>Florian Huonder</name> </developer> <developer> <name>Sacha Dolski</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/prolutionsGmbH/herasaf-xacml-core.git</connection> <developerConnection>scm:git:ssh://github.com:prolutionsGmbH/herasaf-xacml-core.git</developerConnection> <url>https://github.com/prolutionsGmbH/herasaf-xacml-core/tree/main</url> </scm> <distributionManagement> <repository> <id>herasaf_repo</id> <url>https://prolutions.pkgs.visualstudio.com/herasaf/_packaging/herasaf_repo/maven/v1</url> </repository> </distributionManagement> <properties> <revision>0.0.0</revision> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.compile.version>1.8</java.compile.version> <reporting.findbugs.excludeFile.location>src/main/config/reporting/findbugs-excludes.xml</reporting.findbugs.excludeFile.location> <reporting.checkstyle.excludeFile.location>src/main/config/reporting/checkstyle-suppressions.xml</reporting.checkstyle.excludeFile.location> <jaxb.version>3.0.2</jaxb.version> <slf4j.version>1.7.32</slf4j.version> <testng.version>7.4.0</testng.version> <junit.version>4.13.2</junit.version> <xmlunit.version>1.6</xmlunit.version> <logback.version>1.2.7</logback.version> <bundle.plugin.version>5.1.2</bundle.plugin.version> <compiler.plugin.version>3.8.1</compiler.plugin.version> <javadoc.plugin.version>3.3.1</javadoc.plugin.version> <source.plugin.version>3.2.1</source.plugin.version> <surefire.plugin.version>2.22.2</surefire.plugin.version> <release.plugin.version>2.5.3</release.plugin.version> <pgp.plugin.version>1.1</pgp.plugin.version> </properties> <dependencies> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>${jaxb.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>${xmlunit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${bundle.plugin.version}</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Import-Package> * </Import-Package> <Export-Package> org.herasaf.xacml.core.* </Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> <configuration> <source>${java.compile.version}</source> <target>${java.compile.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.plugin.version}</version> <configuration> <skip>false</skip> <argLine>-Xms512m -Xmx1024m</argLine> <forkCount>1C</forkCount> <reuseForks>false</reuseForks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${release.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.plugin.version}</version> <configuration> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.4</version> <configuration> <destFile>/home/vsts/work/1/s/CCReport43F6D5EF/jacoco.exec</destFile> <outputDirectory>/home/vsts/work/1/s/CCReport43F6D5EF</outputDirectory> <dataFile>/home/vsts/work/1/s/CCReport43F6D5EF/jacoco.exec</dataFile> <includes/> <excludes/> </configuration> <executions> <execution> <configuration> <includes> <include>**/*</include> </includes> </configuration> <id>default-prepare-agent-vsts</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report-vsts</id> <goals> <goal>report</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-dependency-plugin </artifactId> <versionRange> [2.1,) </versionRange> <goals> <goal> unpack-dependencies </goal> </goals> </pluginExecutionFilter> <action> <ignore/> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.kohsuke</groupId> <artifactId>pgp-maven-plugin</artifactId> <version>${pgp.plugin.version}</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.kohsuke</groupId> <artifactId>pgp-maven-plugin</artifactId> <version>${pgp.plugin.version}</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>