bionic-js
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>srl.forge</groupId>
<artifactId>bionic-js</artifactId>
<version>0.3.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>
<groupId>srl.forge</groupId>
<artifactId>bionic-js</artifactId>
<version>0.3.0</version>
<packaging>jar</packaging>
<name>Bionic JS</name>
<description>The library to integrate Bionic JS in Java applications</description>
<url>https://github.com/Forge-Srl/bionic-js-runtime-java</url>
<licenses>
<license>
<name>MIT</name>
</license>
</licenses>
<developers>
<developer>
<name>Tommaso Bossi</name>
<email>tommaso.bossi@forge.srl</email>
<organization>Forge S.r.l.</organization>
<organizationUrl>https://forge.srl</organizationUrl>
<timezone>Europe/Rome</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<profiles>
<profile>
<id>Windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>srl.forge</groupId>
<artifactId>jjbridge-engine-v8</artifactId>
<version>${jjbridge.v8.version}</version>
<classifier>windows</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>macOS</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>srl.forge</groupId>
<artifactId>jjbridge-engine-v8</artifactId>
<version>${jjbridge.v8.version}</version>
<classifier>macos</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>Linux</id>
<activation>
<os>
<family>unix</family>
<name>Linux</name>
</os>
</activation>
<dependencies>
<dependency>
<groupId>srl.forge</groupId>
<artifactId>jjbridge-engine-v8</artifactId>
<version>${jjbridge.v8.version}</version>
<classifier>linux</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>release-github</id>
<activation>
<property>
<name>release-repo</name>
<value>github</value>
</property>
</activation>
<properties>
</properties>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Forge S.r.l. Apache Maven Packages</name>
<url>https://maven.pkg.github.com/forge-srl/bionic-js-runtime-java</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-maven-central</id>
<activation>
<property>
<name>release-repo</name>
<value>maven-central</value>
</property>
</activation>
<properties>
</properties>
<distributionManagement>
<repository>
<id>ossrh</id>
<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>
<build>
<plugins>
<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>
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git:git@github.com:forge-srl/bionic-js-runtime-java.git</connection>
<developerConnection>scm:git:git@github.com:forge-srl/bionic-js-runtime-java.git</developerConnection>
<url>https://github.com/Forge-Srl/bionic-js-runtime-java/tree/main</url>
<tag>release/0.3.0</tag>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jjbridge.v8.version>0.3.1</jjbridge.v8.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<runOrder>random</runOrder>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<includes>
<!-- Ensure acceptance tests are executed again on the packaged jar -->
<include>**${file.separator}acceptance${file.separator}**${file.separator}*Test.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.36</version>
</dependency>
</dependencies>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<linkXRef>false</linkXRef>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.0.4</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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</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>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<scmCommentPrefix>build: </scmCommentPrefix>
<tagNameFormat>release/@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>srl.forge</groupId>
<artifactId>jjbridge-api</artifactId>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.1.2</version>
<scope>provided</scope>
<!--
Setting as optional to bypass LGPL limitations.
See: https://github.com/spotbugs/discuss/issues/64#issuecomment-454634426
-->
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.5.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>