plus-minus-zero
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.m50d</groupId>
<artifactId>plus-minus-zero</artifactId>
<version>0.2</version>
</dependency><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>com.github.m50d</groupId>
<artifactId>plus-minus-zero</artifactId>
<version>0.2</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.scala.epoch>2.12</version.scala.epoch>
<version.scala.plugin.macro>2.1.1</version.scala.plugin.macro>
<version.scala.release>2.12.6</version.scala.release>
<version.scala.zinc>1.1.7</version.scala.zinc>
<version.scalajs.epoch>0.6</version.scalajs.epoch>
<version.scalajs.release>0.6.24</version.scalajs.release>
<version.scalajs.library>sjs${version.scalajs.epoch}_${version.scala.epoch}</version.scalajs.library>
</properties>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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>
</plugins>
</build>
</profile>
</profiles>
<name>Plus/Minus Zero</name>
<description>EMA Rank Calculator</description>
<url>https://github.com/m50d/plus-minus-zero</url>
<licenses>
<license>
<name>GNU Affero General Public License version 3.0</name>
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Michael Donaghy</name>
<email>md401@srcf.ucam.org</email>
<organization>m50d</organization>
<organizationUrl>https://github.com/m50d</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/m50d/plus-minus-zero.git</connection>
<developerConnection>scm:git:git@github.com:m50d/plus-minus-zero.git</developerConnection>
<url>https://github.com/m50d/plus-minus-zero/tree/master</url>
<tag>plus-minus-zero-0.2</tag>
</scm>
<distributionManagement>
<repository>
<id>bintray-lmm-maven</id>
<name>lmm-maven</name>
<url>https://api.bintray.com/maven/lmm/maven/plus-minus-zero/;publish=1</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<skip>true</skip>
<skipMain>true</skipMain>
</configuration>
</plugin>
<plugin>
<groupId>com.carrotgarden.maven</groupId>
<artifactId>scalor-maven-plugin_2.12</artifactId>
<configuration>
<defineBridge>
<dependency>
<groupId>org.scala-sbt</groupId>
<artifactId>compiler-bridge_${version.scala.epoch}</artifactId>
<version>${version.scala.zinc}</version>
</dependency>
</defineBridge>
<defineCompiler>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${version.scala.release}</version>
</dependency>
</defineCompiler>
<definePluginList>
<dependency>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${version.scala.release}</artifactId>
<version>${version.scala.plugin.macro}</version>
</dependency>
<dependency>
<groupId>org.scala-js</groupId>
<artifactId>scalajs-compiler_${version.scala.release}</artifactId>
<version>${version.scalajs.release}</version>
</dependency>
</definePluginList>
<linkerMainInitializerList>
<initializer>
com.github.m50d.plusminuszero.PlusMinusZero.main(build=${project.artifactId},stamp=${maven.build.timestamp})
</initializer>
</linkerMainInitializerList>
<zincVerifyVersion>false</zincVerifyVersion>
<eclipseRestartEnable>false</eclipseRestartEnable>
</configuration>
<executions>
<execution>
<goals>
<goal>eclipse-config</goal>
<goal>eclipse-format</goal>
<goal>eclipse-prescomp</goal>
<goal>register-main</goal>
<goal>register-test</goal>
<goal>compile-main</goal>
<goal>compile-test</goal>
<goal>scaladoc-main</goal>
<goal>scaladoc-test</goal>
<goal>scala-js-link-main</goal>
<goal>scala-js-link-test</goal>
<goal>scala-js-env-prov-webjars</goal>
<goal>scala-js-env-prov-nodejs</goal>
<goal>scala-js-env-conf-nodejs</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<!-- During release:perform, enable the "release" profile -->
<releaseProfiles>release</releaseProfiles>
<useReleaseProfile>false</useReleaseProfile>
</configuration>
</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-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>jcenter</id>
<name>jcenter</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${version.scala.release}</version>
</dependency>
<dependency>
<groupId>org.scala-js</groupId>
<artifactId>scalajs-library_${version.scala.epoch}</artifactId>
<version>${version.scalajs.release}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scala-js</groupId>
<artifactId>scalajs-dom_${version.scalajs.library}</artifactId>
<version>0.9.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>us.oyanglul</groupId>
<artifactId>owlet_${version.scalajs.library}</artifactId>
<version>0.1.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.monix</groupId>
<artifactId>monix_${version.scala.epoch}</artifactId>
<version>3.0.0-RC1</version>
</dependency>
<dependency>
<groupId>com.softwaremill.sttp</groupId>
<artifactId>core_${version.scala.epoch}</artifactId>
<version>1.6.3</version>
</dependency>
<dependency>
<groupId>com.softwaremill.sttp</groupId>
<artifactId>core_${version.scalajs.library}</artifactId>
<version>1.6.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>biz.enef</groupId>
<artifactId>slogging_${version.scala.epoch}</artifactId>
<version>0.6.1</version>
</dependency>
<dependency>
<groupId>biz.enef</groupId>
<artifactId>slogging_${version.scalajs.library}</artifactId>
<version>0.6.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<version>2.0.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>