parboiled
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.libs</groupId> <artifactId>parboiled</artifactId> <version>1.0.0</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>org.daisy</groupId> <artifactId>daisy</artifactId> <version>4</version> <relativePath /> </parent> <groupId>org.daisy.libs</groupId> <artifactId>parboiled</artifactId> <version>1.0.0</version> <packaging>bundle</packaging> <name>Parboiled</name> <description>parboiled is a mixed Java/Scala library providing for lightweight and easy-to-use, yet powerful and elegant parsing of arbitrary input text based on Parsing expression grammars (PEGs). This bundle wraps two different libraries, parboiled-core and parboiled-java, as they offer classes in the same package path</description> <url>http://pegdown.org</url> <organization> <name>sirthias</name> <url>http://www.decodified.com/</url> </organization> <licenses> <license> <name> Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <id>sirthias</id> <name>Mathias</name> <email>mathias(at)decodified(dot)com</email> <roles> <role>developer</role> </roles> </developer> </developers> <properties> <lib.groupId>org.parboiled</lib.groupId> <lib.artifactId>parboiled-java</lib.artifactId> <lib.version>1.1.7</lib.version> </properties> <dependencies> <dependency> <groupId>${lib.groupId}</groupId> <artifactId>${lib.artifactId}</artifactId> <version>${lib.version}</version> </dependency> <dependency> <groupId>org.parboiled</groupId> <artifactId>parboiled-core</artifactId> <version>1.1.7</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.14.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.11</artifactId> <version>2.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.0.3</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>5.0.3</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-analysis</artifactId> <version>5.0.3</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>5.0.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Bundle-SymbolicName>org.parboiled.parboiled</Bundle-SymbolicName> <Embed-Dependency>parboiled-java;inline=true, parboiled-core;inline=true</Embed-Dependency> <Export-Package> org.parboiled; org.parboiled.annotations; org.parboiled.transform; org.parboiled.buffers; org.parboiled.common; org.parboiled.errors; org.parboiled.matchers; org.parboiled.matchervisitors; org.parboiled.parserunners; org.parboiled.support; org.parboiled.trees; </Export-Package> <DynamicImport-Package>*</DynamicImport-Package> <_removeheaders>Built-By,Bnd-LastModified,Embed-Dependency,Private-Package</_removeheaders> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>fetch-sources-and-javadocs</id> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${lib.groupId}</groupId> <artifactId>${lib.artifactId}</artifactId> <version>${lib.version}</version> <classifier>javadoc</classifier> <outputDirectory>${project.build.directory}/javadoc</outputDirectory> </artifactItem> <artifactItem> <groupId>${lib.groupId}</groupId> <artifactId>${lib.artifactId}</artifactId> <version>${lib.version}</version> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/sources</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>attach-sources-and-javadocs</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>sources.xml</descriptor> <descriptor>javadoc.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <scm> <tag>parboiled-1.0.0</tag> </scm> </project>