87 lines
2.4 KiB
Diff
87 lines
2.4 KiB
Diff
From 6d907463edb485f6105ed9c9e8e5962cf80964db Mon Sep 17 00:00:00 2001
|
|
From: wangge <wang__ge@126.com>
|
|
Date: Tue, 8 Sep 2020 17:16:24 +0800
|
|
Subject: [PATCH] fix pom.xml
|
|
|
|
---
|
|
pom.xml | 55 ++++++++++++++++++++++++++++++++++++++++++++++---------
|
|
1 file changed, 46 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index b654a2a..da7ec97 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -1,17 +1,10 @@
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
-
|
|
- <parent>
|
|
- <groupId>org.sonatype.oss</groupId>
|
|
- <artifactId>oss-parent</artifactId>
|
|
- <version>7</version>
|
|
- </parent>
|
|
-
|
|
<groupId>com.jamonapi</groupId>
|
|
<artifactId>jamon</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>JAMon (Java Application Monitor)</name>
|
|
- <version>2.75</version>
|
|
+ <version>2.74</version>
|
|
|
|
<description>The Java Application Monitor (JAMon) is a free, simple, high performance, thread safe, Java API that allows developers to easily monitor production applications.
|
|
|
|
@@ -42,4 +35,48 @@
|
|
</developer>
|
|
</developers>
|
|
|
|
-</project>
|
|
\ No newline at end of file
|
|
+ <build>
|
|
+ <plugins>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
+ <configuration>
|
|
+ <source>1.5</source>
|
|
+ <target>1.5</target>
|
|
+ </configuration>
|
|
+ <inherited>true</inherited>
|
|
+ </plugin>
|
|
+
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
+ <version>3.0.1</version>
|
|
+ <configuration>
|
|
+ <additionalparam>
|
|
+ -Xdoclint:none
|
|
+ </additionalparam>
|
|
+ <failOnError>false</failOnError>
|
|
+ </configuration>
|
|
+ </plugin>
|
|
+ </plugins>
|
|
+ <sourceDirectory>java</sourceDirectory>
|
|
+ </build>
|
|
+
|
|
+ <dependencies>
|
|
+ <dependency>
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
+ <artifactId>tomcat-catalina</artifactId>
|
|
+ <version>7.0.0</version>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
+ <artifactId>tomcat-servlet-api</artifactId>
|
|
+ <version>7.0.0</version>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
+ <artifactId>jetty-util</artifactId>
|
|
+ <version>9.0.3</version>
|
|
+ </dependency>
|
|
+ </dependencies>
|
|
+</project>
|
|
--
|
|
2.23.0
|
|
|