Skip to content

Commit

Permalink
Update pom.xml and jar files
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Gedon <dominik@gedon.org>
  • Loading branch information
nodeg committed Dec 17, 2024
1 parent c4fb262 commit 7a264f2
Show file tree
Hide file tree
Showing 21 changed files with 3,709 additions and 727 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ networkless build.
First, grab the sources:

```bash
wget https://archive.apache.org/dist/commons/collections/source/commons-collections4-4.4-src.tar.gz
wget https://archive.apache.org/dist/commons/collections/source/commons-collections4-4.5.0-M2-src.tar.gz
```

Second, create a new `tetra` project named `commons-collections` based on those sources:
Expand Down
Binary file removed spec/data/antlr/antlr-2.7.2.jar
Binary file not shown.
Binary file added spec/data/antlr/antlr-4.13.2.jar
Binary file not shown.
187 changes: 181 additions & 6 deletions spec/data/antlr/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,181 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>antlr</groupId>
<artifactId>antlrall</artifactId>
<version>2.7.2</version>
</project>
<!--
~ Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
~ Use of this file is governed by the BSD 3-clause license that
~ can be found in the LICENSE.txt file in the project root.
-->

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>org.antlr</groupId>
<artifactId>antlr4-master</artifactId>
<version>4.13.3-SNAPSHOT</version>
<packaging>pom</packaging>

<name>ANTLR 4</name>
<description>ANTLR 4 Master Build POM</description>
<url>https://www.antlr.org/</url>
<inceptionYear>1992</inceptionYear>
<organization>
<name>ANTLR</name>
<url>https://www.antlr.org/</url>
</organization>

<prerequisites>
<maven>3.8</maven>
</prerequisites>

<licenses>
<license>
<name>BSD-3-Clause</name>
<url>https://www.antlr.org/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Terence Parr</name>
<url>https://github.com/parrt</url>
<roles>
<role>Project lead - ANTLR</role>
</roles>
</developer>
<developer>
<name>Sam Harwell</name>
<url>http://tunnelvisionlabs.com</url>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<name>Eric Vergnaud</name>
<roles>
<role>Developer - JavaScript, C#, Python 2, Python 3</role>
</roles>
</developer>
<developer>
<name>Peter Boyer</name>
<roles>
<role>Developer - Go</role>
</roles>
</developer>
<developer>
<name>Jim Idle</name>
<email>jimi@idle.ws</email>
<url>https://www.linkedin.com/in/jimidle/</url>
<roles>
<role>Developer - Maven Plugin</role>
<role>Developer - Go runtime</role>
</roles>
</developer>
<developer>
<name>Mike Lischke</name>
<roles>
<role>Developer - C++ Target</role>
</roles>
</developer>
<developer>
<name>Tom Everett</name>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>

<modules>
<module>runtime/Java</module>
<module>tool</module>
<module>antlr4-maven-plugin</module>
<module>tool-testsuite</module>
<module>runtime-testsuite</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputTimestamp>1722710576</project.build.outputTimestamp>
<antlr.testinprocess>true</antlr.testinprocess>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<mailingLists>
<mailingList>
<name>antlr-discussion</name>
<archive>https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion</archive>
</mailingList>
</mailingLists>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/antlr/antlr4/issues</url>
</issueManagement>

<scm>
<url>https://github.com/antlr/antlr4/tree/master</url>
<connection>scm:git:git://github.com/antlr/antlr4.git</connection>
<developerConnection>scm:git:git@github.com:antlr/antlr4.git</developerConnection>
<tag>4.13.0</tag>
</scm>

<build>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>test</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<filesets>
<fileset>
<directory>runtime/Swift/.build</directory>
</fileset>
<fileset>
<directory>runtime/Swift/Tests/Antlr4Tests/gen</directory>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M6</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Binary file removed spec/data/commons-collections4-4.4-src.tar.gz
Binary file not shown.
Binary file removed spec/data/commons-collections4-4.4-src.zip
Binary file not shown.
Binary file not shown.
Binary file added spec/data/commons-collections4-4.5.0-M2-src.zip
Binary file not shown.
Binary file removed spec/data/commons-logging/commons-logging-1.1.1.jar
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 7a264f2

Please sign in to comment.