54 lines
1.4 KiB
Diff
54 lines
1.4 KiB
Diff
From 7d716ec5e533d82aaa561afd0b3602f29320b95a Mon Sep 17 00:00:00 2001
|
|
From: wangge <wang__ge@126.com>
|
|
Date: Mon, 31 Aug 2020 14:30:25 +0800
|
|
Subject: [PATCH] fix toplink essentials pom
|
|
|
|
---
|
|
toplink-essentials-2.0-46.pom | 31 +++++++++++++++++++++++++++++++
|
|
1 file changed, 31 insertions(+)
|
|
|
|
diff --git a/toplink-essentials-2.0-46.pom b/toplink-essentials-2.0-46.pom
|
|
index ce25ecb..f7999c2 100644
|
|
--- a/toplink-essentials-2.0-46.pom
|
|
+++ b/toplink-essentials-2.0-46.pom
|
|
@@ -9,5 +9,36 @@
|
|
<artifactId>persistence-api</artifactId>
|
|
<version>1.0b</version>
|
|
</dependency>
|
|
+ <dependency>
|
|
+ <groupId>antlr</groupId>
|
|
+ <artifactId>antlr</artifactId>
|
|
+ <version>2.7.6</version>
|
|
+ </dependency>
|
|
</dependencies>
|
|
+
|
|
+ <build>
|
|
+ <resources>
|
|
+ <resource>
|
|
+ <directory>${project.basedir}</directory>
|
|
+ <filtering>false</filtering>
|
|
+ <includes>
|
|
+ <include>**/*</include>
|
|
+ </includes>
|
|
+ </resource>
|
|
+ </resources>
|
|
+
|
|
+ <plugins>
|
|
+ <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>
|
|
+ </build>
|
|
</project>
|
|
--
|
|
2.23.0
|
|
|