version 1.0.9
This commit is contained in:
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
b2f9266d0f2b2a87e5e177eaecd35543
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
5b2151f84cee0197018a567674db051e94dfd334
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
<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>
|
||||||
|
|
||||||
|
<prerequisites>
|
||||||
|
<maven>3.1.0</maven>
|
||||||
|
</prerequisites>
|
||||||
|
|
||||||
|
<groupId>com.immomo.momosec</groupId>
|
||||||
|
<artifactId>mosec-maven-plugin</artifactId>
|
||||||
|
<version>1.0.9</version>
|
||||||
|
<packaging>maven-plugin</packaging>
|
||||||
|
|
||||||
|
<name>Mosec Maven Plugin</name>
|
||||||
|
<description>用于检测Maven项目的第三方依赖组件是否存在安全漏洞</description>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>retanoj</name>
|
||||||
|
<email>mmsrc@immomo.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<mavenVersion>3.3.9</mavenVersion>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-core</artifactId>
|
||||||
|
<version>${mavenVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||||
|
<artifactId>maven-plugin-annotations</artifactId>
|
||||||
|
<version>3.2</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.code.gson</groupId>
|
||||||
|
<artifactId>gson</artifactId>
|
||||||
|
<version>2.8.5</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
|
<artifactId>httpclient</artifactId>
|
||||||
|
<version>4.5.13</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.plugin-testing</groupId>
|
||||||
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.13</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-core</artifactId>
|
||||||
|
<version>2.28.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-compat</artifactId>
|
||||||
|
<version>3.3.9</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
|
<version>3.5</version>
|
||||||
|
<configuration>
|
||||||
|
<goalPrefix>mosec</goalPrefix>
|
||||||
|
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>mojo-descriptor</id>
|
||||||
|
<goals>
|
||||||
|
<goal>descriptor</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>help-goal</id>
|
||||||
|
<goals>
|
||||||
|
<goal>helpmojo</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.6.2</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.8</source>
|
||||||
|
<target>1.8</target>
|
||||||
|
<compilerArgument>-Xlint</compilerArgument>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>internal</id>
|
||||||
|
<url>file://mvn-repo</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
591d374bf6de6cd28897bdbf4360b454
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
5f6abdce51651103068ef2004f5661f827e1e94d
|
||||||
@@ -3,12 +3,13 @@
|
|||||||
<groupId>com.immomo.momosec</groupId>
|
<groupId>com.immomo.momosec</groupId>
|
||||||
<artifactId>mosec-maven-plugin</artifactId>
|
<artifactId>mosec-maven-plugin</artifactId>
|
||||||
<versioning>
|
<versioning>
|
||||||
<latest>1.0.8</latest>
|
<latest>1.0.9</latest>
|
||||||
<release>1.0.8</release>
|
<release>1.0.9</release>
|
||||||
<versions>
|
<versions>
|
||||||
<version>1.0.7</version>
|
<version>1.0.7</version>
|
||||||
<version>1.0.8</version>
|
<version>1.0.8</version>
|
||||||
|
<version>1.0.9</version>
|
||||||
</versions>
|
</versions>
|
||||||
<lastUpdated>20210621033628</lastUpdated>
|
<lastUpdated>20220408100507</lastUpdated>
|
||||||
</versioning>
|
</versioning>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
95c17d487c921627a9b97445e2a00f47
|
e4a26d216c58af253ded91c3ad8d132b
|
||||||
@@ -1 +1 @@
|
|||||||
4f2ce91855db9e696891caa64a322b381bef5894
|
968d6f2a05d68b48c5624888697cb813e1ceee86
|
||||||
1
src/test/resources/projects/empty-dir/foo
Normal file
1
src/test/resources/projects/empty-dir/foo
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
Reference in New Issue
Block a user