digipost-html-validator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.digipost</groupId> <artifactId>digipost-html-validator</artifactId> <version>1.1.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>no.digipost</groupId> <artifactId>digipost-open-super-pom</artifactId> <version>6</version> </parent> <artifactId>digipost-html-validator</artifactId> <version>1.1.0</version> <description>Validering og sanitering av HTML som skal sendes til Digipost</description> <name>digipost-html-validator</name> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.8.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.owasp-java-html-sanitizer</groupId> <artifactId>owasp-java-html-sanitizer</artifactId> <version>20240325.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.16.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>co.unruly</groupId> <artifactId>java-8-matchers</artifactId> <version>1.6</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> <configuration> <rules> <requireMavenVersion> <version>3.3.1</version> </requireMavenVersion> <bannedDependencies> <excludes> <exclude>javax.*</exclude> <exclude>org.hamcrest:hamcrest-core</exclude> </excludes> </bannedDependencies> </rules> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> </plugin> <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> <version>0.14.1</version> <configuration> <newVersion> <file> <path>${project.build.directory}/${project.build.finalName}.${project.packaging}</path> </file> </newVersion> <parameter> <onlyModified>true</onlyModified> <onlyBinaryIncompatible>true</onlyBinaryIncompatible> <includes> <include>no.digipost</include> </includes> </parameter> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <ignoreNonCompile>true</ignoreNonCompile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <header>src/main/license-header.txt</header> <strictCheck>true</strictCheck> <excludes> <exclude>LICENCE*</exclude> <exclude>NOTICE</exclude> <exclude>.github/**/*.yml</exclude> <exclude>**/*.html</exclude> <exclude>**/*.xml</exclude> <exclude>**/*.log</exclude> <exclude>**/*.txt</exclude> <exclude>**/*.pem</exclude> <exclude>**/*.cer</exclude> <exclude>**/*.response</exclude> <exclude>.editorconfig</exclude> <exclude>.java-version</exclude> <exclude>.drone.yml</exclude> <exclude>.mvn/maven.config</exclude> </excludes> </configuration> <executions> <execution> <id>check-license-header</id> <goals> <goal>check</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>maven-notice-plugin</artifactId> <version>1.1.0</version> <configuration> <excludeScopes> <excludeScope>test</excludeScope> </excludeScopes> </configuration> <executions> <execution> <goals> <goal>generate</goal> </goals> <phase>generate-resources</phase> </execution> </executions> <dependencies> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.3.2</version> </dependency> </dependencies> </plugin> </plugins> </build> <scm> <connection>scm:git:git@github.com:digipost/digipost-html-validator.git</connection> <developerConnection>scm:git:git@github.com:digipost/digipost-html-validator.git</developerConnection> <url>scm:git:git@github.com:digipost/digipost-html-validator</url> <tag>HEAD</tag> </scm> </project>