-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from VariantSync/as-fixed-history
- Loading branch information
Showing
86 changed files
with
6,294 additions
and
288 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# A simple script for deploying an update of the functjonal library to the local maven repository | ||
mvn deploy:deploy-file -DgroupId=org.variantsync -DartifactId=functjonal -Dversion=1.0-SNAPSHOT -Durl=file:../local-maven-repo/ -DrepositoryId=local-maven-repo -DupdateReleaseInfo=true -Dfile=../src/main/resources/lib/functjonal-1.0-SNAPSHOT.jar | ||
rm -rf ~/.m2/repository/org/variantsync/functjonal/ |
1 change: 0 additions & 1 deletion
1
...ven-repo/org/variantsync/functjonal/1.0-SNAPSHOT/functjonal-1.0-20230308.125347-1.jar.md5
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...en-repo/org/variantsync/functjonal/1.0-SNAPSHOT/functjonal-1.0-20230308.125347-1.jar.sha1
This file was deleted.
Oops, something went wrong.
Binary file renamed
BIN
+50.3 KB
...SHOT/functjonal-1.0-20230308.125347-1.jar → ...SHOT/functjonal-1.0-20230616.172827-4.jar
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...ven-repo/org/variantsync/functjonal/1.0-SNAPSHOT/functjonal-1.0-20230616.172827-4.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
9c298528d8baeeccd664e5c06f881265 |
1 change: 1 addition & 0 deletions
1
...en-repo/org/variantsync/functjonal/1.0-SNAPSHOT/functjonal-1.0-20230616.172827-4.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
98de1b4bfa2aa9f4e9eaa8c547922f41c59e6e4f |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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/functjonal/1.0-SNAPSHOT/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 @@ | ||
cc732baa0478a9c6f2d21fdeb08f6a82 | ||
409dc289b1020047cbbd30802a354ba7 |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/functjonal/1.0-SNAPSHOT/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 @@ | ||
feb03041c908b3f11611fb2380e6bb9424ff2e63 | ||
7e20f40901ae2691c36c164a4306d0c3567d7edc |
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/functjonal/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 @@ | ||
a9a0be7eec34faf063b51a34b7fed4a7 | ||
a374a3f90764d4507ada7e4ff0d8f0f6 |
2 changes: 1 addition & 1 deletion
2
local-maven-repo/org/variantsync/functjonal/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 @@ | ||
d53c3d14023e9052bda58ce2fdcc5580efda1a0b | ||
834afd5cf8d0319105bad448138bf311e9734b1e |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
# Call this script from the repository's root directory './scripts/generateANTLRClasses.sh' | ||
|
||
# Define the paths and package information | ||
GRAMMAR_DIR="src/main/resources/grammars" | ||
GRAMMAR_FILE="CExpression.g4" | ||
PACKAGE="org.variantsync.diffdetective.feature.antlr" | ||
OUTPUT_DIR="$(pwd)/src/main/java/org/variantsync/diffdetective/feature/antlr" | ||
|
||
cd $GRAMMAR_DIR | ||
|
||
# Call ANTLR to generate the lexer and parser | ||
antlr4 -o $OUTPUT_DIR -package "$PACKAGE" "$GRAMMAR_FILE" | ||
|
||
# Provide feedback to the user | ||
if [ $? -eq 0 ]; then | ||
echo "ANTLR Lexer and Parser generated successfully in '$OUTPUT_DIR/$PACKAGE'." | ||
else | ||
echo "ANTLR generation and compilation failed." | ||
fi |
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
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
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
Oops, something went wrong.