Maven Repository - POM file for Development net.sourceforge.reb4j 2.1.0 2.1.0

Summary

reb4j Java Library.

The purpose of reb4j is to provide a pure Java wrapper around the regular expression syntax provided by the JRE's java.util.regex.Pattern class in order to facilitate programmatic construction of regular expressions while taking advantage of compile-time syntax checking. This sub-project ....

Declaration

Here is the list of declaration for net.sourceforge.reb4j. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>net.sourceforge.reb4j</groupId>
   <artifactId>net.sourceforge.reb4j</artifactId>
   <version>2.1.0</version>
</dependency>

If you think this Maven repository POM file listing for net.sourceforge.reb4j is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Plugin

The following plugins are used in the net.sourceforge.reb4j-2.1.0.jar

  1. maven-bundle-plugin
  2. maven-compiler-plugin

Packages

The following packages are defined in the net.sourceforge.reb4j-2.1.0.jar

net.sourceforge.reb4j
net.sourceforge.reb4j.charclass

POM File Source

Here is the content of the POM file.

<?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>

  <artifactId>net.sourceforge.reb4j</artifactId>
  <packaging>bundle</packaging>
  <name>reb4j Java Library</name>
  <description>
    The purpose of reb4j is to provide a pure Java wrapper around
    the regular expression syntax provided by the JRE's 
    java.util.regex.Pattern class in order to facilitate programmatic
    construction of regular expressions while taking advantage of
    compile-time syntax checking.  This sub-project contains the
    Java implementation of reb4j.
  </description>
  
  <parent>
    <groupId>net.sourceforge.reb4j</groupId>
    <artifactId>reb4j</artifactId>
    <version>2.1.0</version>
    <relativePath>..</relativePath>
  </parent>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <manifestLocation>META-INF</manifestLocation>
          <instructions>
            <Bundle-SymbolicName>
              ${project.artifactId}
            </Bundle-SymbolicName>
            <Bundle-RequiredExecutionEnvironment>
              JavaSE-1.6
            </Bundle-RequiredExecutionEnvironment>
            <Export-Package>
              net.sourceforge.reb4j;version="${packageVersion}"
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
    <resources>
      <resource>
        <directory>${basedir}</directory>
        <includes>
          <include>COPYING</include>
          <include>COPYING.LESSER</include>
        </includes>
      </resource>
    </resources>
  </build>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.functionaljava</groupId>
      <artifactId>functionaljava</artifactId>
    </dependency>
  </dependencies>

</project>