github.com/ishita82/trivy-gitaction@v0.0.0-20240206054925-e937cc05f8e3/integration/testdata/fixtures/repo/pom/pom.xml (about) 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 7 <groupId>com.example</groupId> 8 <artifactId>log4shell</artifactId> 9 <version>1.0-SNAPSHOT</version> 10 <name>log4shell</name> 11 <packaging>war</packaging> 12 13 <properties> 14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 15 <maven.compiler.target>1.8</maven.compiler.target> 16 <maven.compiler.source>1.8</maven.compiler.source> 17 <junit.version>5.7.1</junit.version> 18 </properties> 19 20 <dependencies> 21 <dependency> 22 <groupId>javax.servlet</groupId> 23 <artifactId>javax.servlet-api</artifactId> 24 <version>4.0.1</version> 25 <scope>provided</scope> 26 </dependency> 27 <dependency> 28 <groupId>org.junit.jupiter</groupId> 29 <artifactId>junit-jupiter-api</artifactId> 30 <version>${junit.version}</version> 31 <scope>test</scope> 32 </dependency> 33 <dependency> 34 <groupId>org.junit.jupiter</groupId> 35 <artifactId>junit-jupiter-engine</artifactId> 36 <version>${junit.version}</version> 37 <scope>test</scope> 38 </dependency> 39 40 41 <dependency> 42 <groupId>com.fasterxml.jackson.core</groupId> 43 <artifactId>jackson-databind</artifactId> 44 <version>2.9.1</version> 45 </dependency> 46 </dependencies> 47 48 <build> 49 <plugins> 50 <plugin> 51 <groupId>org.apache.maven.plugins</groupId> 52 <artifactId>maven-war-plugin</artifactId> 53 <version>3.3.1</version> 54 </plugin> 55 </plugins> 56 </build> 57 58 59 </project>