timel-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.vleo.timel</groupId> <artifactId>timel-core</artifactId> <version>0.9.3</version> </dependency>
<?xml version="1.0" encoding="UTF-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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.vleo.timel</groupId> <artifactId>pom</artifactId> <version>0.9.3</version> </parent> <artifactId>timel-core</artifactId> <name>TimEL core</name> <description>TimEL is a Java library to parse and evaluate discreet time mathematical expressions</description> <url>http://timel.vleo.net</url> <licenses> <license> <name>GNU Lesser General Public License, Version 3.0</name> <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Andrea Leofreddi</name> <email>a.leofreddi@vleo.net</email> <roles> <role>owner</role> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:https://github.com/aleofreddi/timel</connection> <developerConnection>scm:git:https://github.com/aleofreddi/timel</developerConnection> <url>https://github.com/aleofreddi/timel</url> <tag>release-0.9.3</tag> </scm> <properties> <!-- Software version --> <antlr4.version>4.5.3</antlr4.version> <git-commit-id-plugin.version>2.2.4</git-commit-id-plugin.version> <joda.version>2.7</joda.version> </properties> <build> <plugins> <!-- Compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <!-- Metacompiler --> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr4.version}</version> <configuration> <visitor>true</visitor> </configuration> <executions> <execution> <goals> <goal>antlr4</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Assemble the sources jar --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Assemble the test jar --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Assemble the javadoc jar --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven-jacoco-plugin.version}</version> <configuration> <excludes> <!-- AntLR generated --> <exclude>net/vleo/timel/grammar/**/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git-commit-id-plugin.version}</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <generateGitPropertiesFile>true</generateGitPropertiesFile> <failOnNoGitDirectory>false</failOnNoGitDirectory> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Joda time --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>${joda.version}</version> </dependency> <!-- Antlr4 --> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr4.version}</version> </dependency> <!-- Commons CSV --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>${commons-csv.version}</version> <scope>test</scope> </dependency> </dependencies> </project>