flippy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xantoria</groupId> <artifactId>flippy</artifactId> <version>0.2.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>com.xantoria</groupId> <artifactId>flippy</artifactId> <version>0.2.0</version> <name>${project.groupId}:${project.artifactId}</name> <description>A feature switching module for scala applications</description> <url>https://www.github.com/giftig/flippy</url> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Rob Moore</name> <email>giftiger.wunsch@xantoria.com</email> <organization>Xantoria Games</organization> <organizationUrl>http://www.xantoria.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:giftig/flippy.git</connection> <developerConnection>scm:git:git@github.com:giftig/flippy.git</developerConnection> <url>git@github.com:giftig/flippy.git</url> </scm> <properties> <project.build.scalaVersion>2.10.4</project.build.scalaVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- RELEASE PROFILE: For releasing to maven central via OSSRH --> <profiles> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <defaultGoal>package</defaultGoal> <directory>${project.basedir}/build</directory> <finalName>${project.artifactId}-${project.version}</finalName> <sourceDirectory>src/main/scala</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <!-- Test plugin configuration: disable surefire and use scalatest --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.scalatest</groupId> <artifactId>scalatest-maven-plugin</artifactId> <version>1.0</version> <configuration> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> <junitxml>.</junitxml> <filereports>tests.txt</filereports> <suites>com.xantoria.flippy.MainSuite</suites> <parallel>true</parallel> <stdout>F</stdout> <!-- Full stack trace to stdout --> </configuration> <executions> <execution> <id>test</id> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${project.build.scalaVersion}</version> </dependency> <!-- Serialization --> <dependency> <groupId>net.liftweb</groupId> <artifactId>lift-json_2.10</artifactId> <version>2.6</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <!-- OPTIONAL DEPENDENCIES --> <!-- Backends --> <dependency> <groupId>net.debasishg</groupId> <artifactId>redisclient_2.10</artifactId> <version>3.0</version> <optional>true</optional> </dependency> <!-- Spray and akka for API --> <dependency> <groupId>io.spray</groupId> <artifactId>spray-can</artifactId> <version>1.3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-client</artifactId> <version>1.3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-routing</artifactId> <version>1.3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-httpx_2.10</artifactId> <version>1.3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_2.10</artifactId> <version>2.3.0</version> <optional>true</optional> </dependency> <!-- TEST DEPENDENCIES --> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.10</artifactId> <version>2.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>io.spray</groupId> <artifactId>spray-testkit</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> <!-- Docker integration testkit --> <dependency> <groupId>com.whisk</groupId> <artifactId>docker-testkit-scalatest_2.10</artifactId> <version>0.9.0-M6</version> <scope>test</scope> </dependency> </dependencies> </project>