This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
forked from carrotsearch/hppc
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
4 changed files
with
369 additions
and
372 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 |
---|---|---|
@@ -1,78 +1,77 @@ | ||
<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> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<parent> | ||
<groupId>com.github.vsonnier</groupId> | ||
<artifactId>hppcrt-parent</artifactId> | ||
<version>0.7.3-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<!-- Project info. --> | ||
<groupId>com.github.vsonnier</groupId> | ||
<artifactId>hppcrt-parent</artifactId> | ||
<artifactId>hppcrt-template-processor</artifactId> | ||
<version>0.7.3-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<packaging>jar</packaging> | ||
|
||
<name>HPPC-RT Template Processor</name> | ||
<description>Template Processor and Code Generation for HPPC-RT.</description> | ||
|
||
<properties> | ||
<version.velocity>1.7</version.velocity> | ||
</properties> | ||
|
||
<!-- Project info. --> | ||
<groupId>com.github.vsonnier</groupId> | ||
<artifactId>hppcrt-template-processor</artifactId> | ||
<version>0.7.3-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<!-- Dependencies. --> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>${version.guava}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.antlr</groupId> | ||
<artifactId>antlr4</artifactId> | ||
<version>${version.antlr}</version> | ||
</dependency> | ||
|
||
<name>HPPC-RT Template Processor</name> | ||
<description>Template Processor and Code Generation for HPPC-RT.</description> | ||
<dependency> | ||
<groupId>org.apache.velocity</groupId> | ||
<artifactId>velocity</artifactId> | ||
<version>${version.velocity}</version> | ||
</dependency> | ||
|
||
<properties> | ||
<version.velocity>1.7</version.velocity> | ||
</properties> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${version.junit}</version> | ||
</dependency> | ||
|
||
<!-- Dependencies. --> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>${version.guava}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.antlr</groupId> | ||
<artifactId>antlr4</artifactId> | ||
<version>${version.antlr}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.velocity</groupId> | ||
<artifactId>velocity</artifactId> | ||
<version>${version.velocity}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${version.junit}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.carrotsearch.randomizedtesting</groupId> | ||
<artifactId>randomizedtesting-runner</artifactId> | ||
<version>${version.randomizedtesting}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
<dependency> | ||
<groupId>com.carrotsearch.randomizedtesting</groupId> | ||
<artifactId>randomizedtesting-runner</artifactId> | ||
<version>${version.randomizedtesting}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<!-- Build tuning, run ANTLRv4 to build from grammar --> | ||
<build> | ||
<!-- Build tuning, run ANTLRv4 to build from grammar --> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.antlr</groupId> | ||
<artifactId>antlr4-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>antlr4</id> | ||
<goals> | ||
<goal>antlr4</goal> | ||
</goals> | ||
<configuration> | ||
<visitor>true</visitor> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>antlr4</id> | ||
<goals> | ||
<goal>antlr4</goal> | ||
</goals> | ||
<configuration> | ||
<visitor>true</visitor> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</build> | ||
</project> |
Oops, something went wrong.
dadde0a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
XML tidy by Notepad++, mostly :)