-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
733b8a8
commit 92b76b9
Showing
9 changed files
with
14 additions
and
126 deletions.
There are no files selected for viewing
Binary file modified
BIN
+2.21 MB
(3800%)
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.jar.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
95e22cbcc4042e40db1b13fc3c293a0c | ||
5310aec5ada5f6e967eecf44f4e058a2 |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.jar.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e5f3883a403baf3e82d1aca29cf7a04a20a8a503 | ||
55a1f20ebc50ef3a6cd159b48b059df0664149e7 |
126 changes: 7 additions & 119 deletions
126
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,120 +1,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"> | ||
<parent> | ||
<artifactId>javaparser-parent</artifactId> | ||
<groupId>com.github.javaparser</groupId> | ||
<version>3.15.17</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>javaparser-core</artifactId> | ||
<packaging>jar</packaging> | ||
<description>The core parser functionality. This may be all you need.</description> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU Lesser General Public License</name> | ||
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
<comments>A business-friendly OSS license</comments> | ||
</license> | ||
</licenses> | ||
|
||
<properties> | ||
<java.version>1.8</java.version> | ||
<build.timestamp>${maven.build.timestamp}</build.timestamp> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.helger.maven</groupId> | ||
<artifactId>ph-javacc-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>javacc</id> | ||
<goals> | ||
<goal>javacc</goal> | ||
</goals> | ||
<configuration> | ||
<grammarEncoding>${project.build.sourceEncoding}</grammarEncoding> | ||
<jdkVersion>${java.version}</jdkVersion> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- Generate an OSGi-enabled MANIFEST during the build --> | ||
<plugin> | ||
<groupId>biz.aQute.bnd</groupId> | ||
<artifactId>bnd-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>bnd-process</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<!-- Make sure the bnd-generated manifest is picked up, see MJAR-193 --> | ||
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> | ||
<!-- Set module name --> | ||
<manifestEntries> | ||
<Automatic-Module-Name>com.github.javaparser.core</Automatic-Module-Name> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<compilerArgs> | ||
<!-- This stores method parameter names in the class file, which are used by the metamodel generator --> | ||
<arg>-parameters</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>add-source</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>add-source</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<source>src/main/javacc-support</source> | ||
</sources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>templating-maven-plugin</artifactId> | ||
<version>1.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>filter-src</id> | ||
<goals> | ||
<goal>filter-sources</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.variantsync.boosting</groupId> | ||
<artifactId>trace-boosting</artifactId> | ||
<version>1.0.0</version> | ||
</project> |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.pom.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1407fcf0e238411c281bb9cfa164b5d6 | ||
035de45a241b95c1a7610fd0bd640127 |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/1.0.0/trace-boosting-1.0.0.pom.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
648dd8f44f812d163769110f23c1506653eabe85 | ||
53aa94c22d477e663038e0ae472a7502cf342861 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/maven-metadata.xml.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
a706d3e69caefce7346862ef1cd210d6 | ||
06d58d513fe9aebb873dabd88e53bba4 |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/boosting/trace-boosting/maven-metadata.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
a334547bd5e71610e277efe263ca4e275a49eeee | ||
340cfbc04aa4e8cc0a4edb68d758afe436a6fa46 |