jpr_01
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.teragrep</groupId> <artifactId>jpr_01</artifactId> <version>3.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.teragrep</groupId> <artifactId>jpr_01</artifactId> <version>3.1.1</version> <name>jpr_01</name> <description>Java bindings for PCRE 2 library</description> <url>https://teragrep.com</url> <licenses> <license> <name>Apache License v2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Toni Tiihonen</name> <email>48@teragrep.com</email> <organization>Teragrep</organization> <organizationUrl>https://teragrep.com</organizationUrl> </developer> <developer> <name>Mikko Kortelainen</name> <email>1@teragrep.com</email> <organization>Teragrep</organization> <organizationUrl>https://teragrep.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/teragrep/jpr_01.git</connection> <developerConnection>scm:git:git@github.com:teragrep/jpr_01.git</developerConnection> <url>https://github.com/teragrep/jpr_01/</url> </scm> <properties> <java.version>1.8</java.version> <revision>0.0.1</revision> <changelist>-SNAPSHOT</changelist> <junit.jupiter.version>5.7.1</junit.jupiter.version> <maven.compiler.source>1.8</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.target>1.8</maven.compiler.target> <sha1></sha1> </properties> <dependencies> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.12.1</version> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna-platform</artifactId> <version>5.12.1</version> </dependency> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-sources</id> <phase>process-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>cp</executable> <arguments> <argument>-a</argument> <argument>${project.build.directory}/../src/main/c/.</argument> <argument>.</argument> </arguments> <workingDirectory>${project.build.directory}/${project.artifactId}/src/main/c</workingDirectory> </configuration> </execution> <execution> <id>autoreconf</id> <phase>process-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>autoreconf</executable> <arguments> <argument>-fvi</argument> </arguments> <workingDirectory>${project.build.directory}/${project.artifactId}/src/main/c</workingDirectory> </configuration> </execution> <execution> <id>configure</id> <phase>process-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>./configure</executable> <arguments> <argument>--prefix=/</argument> <argument>--libdir=/</argument> </arguments> <workingDirectory>${project.build.directory}/${project.artifactId}/src/main/c</workingDirectory> </configuration> </execution> <execution> <id>make</id> <phase>process-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>make</executable> <arguments> <argument>-j1</argument> </arguments> <workingDirectory>${project.build.directory}/${project.artifactId}/src/main/c</workingDirectory> </configuration> </execution> <execution> <id>make-install</id> <phase>process-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>make</executable> <arguments> <argument>-j1</argument> <argument>install</argument> <argument>DESTDIR=${project.build.directory}/classes</argument> </arguments> <workingDirectory>${project.build.directory}/${project.artifactId}/src/main/c</workingDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <Class-Path>lib/javapcre/</Class-Path> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>8</source> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>publish-maven-central</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>publish-github-packages</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/teragrep/jpr_01</url> </repository> </distributionManagement> </profile> </profiles> </project>