| Group ID: |
cz.net21.ttulka.recexp |
| Artifact ID: |
recursive-expressions |
| Version: |
0.0.0-beta |
| Last modified: |
11.01.2018 18:01 |
| Packaging: |
jar |
| Name: |
Recursive Expressions |
| Description: |
Java library for working with recursive expressions and context-free languages and grammars. |
| URL: |
https://github.com/ttulka/recursive-expressions |
|
|
| Size: |
30.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/cz/net21/ttulka/recexp/recursive-expressions/0.0.0-beta/recursive-expressions-0.0.0-beta.jar |
| POM: |
Show
hide
<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>
<groupId>cz.net21.ttulka.recexp</groupId>
<artifactId>recursive-expressions</artifactId>
<version>0.0.0-beta</version>
<name>Recursive Expressions</name>
<description>Java library for working with recursive expressions and context-free languages and grammars.</description>
<url>https://github.com/ttulka/recursive-expressions</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>localBuild</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- releasing -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:ttulka/recursive-expressions.git</connection>
<developerConnection>scm:git:git@github.com:ttulka/recursive-expressions.git</developerConnection>
<url>git@github.com:ttulka/recursive-expressions.git</url>
</scm>
<developers>
<developer>
<name>Tomas Tulka</name>
<url>https://github.com/ttulka</url>
</developer>
</developers>
</project>
|
| Maven: |
<dependency>
<groupId>cz.net21.ttulka.recexp</groupId>
<artifactId>recursive-expressions</artifactId>
<version>0.0.0-beta</version>
</dependency>
|
| Gradle: |
cz.net21.ttulka.recexp:recursive-expressions:0.0.0-beta |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|