react-backstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.leaguekit</groupId>
<artifactId>react-backstrap</artifactId>
<version>0.0.15</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>react-backstrap</artifactId>
<groupId>com.leaguekit</groupId>
<packaging>jar</packaging>
<version>0.0.15</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>JS Library for building Single Page Applications using Backbone, Bootstrap, and React</description>
<url>https://github.com/moodysalem/react-backstrap</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/moodysalem/react-backstrap</url>
<connection>scm:git:https://github.com/moodysalem/react-backstrap.git</connection>
<developerConnection>scm:git:https://github.com/moodysalem/react-backstrap.git</developerConnection>
<tag>react-backstrap-0.0.15</tag>
</scm>
<developers>
<developer>
<name>Moody Salem</name>
<email>moody.salem@gmail.com</email>
<organization>LeagueKit</organization>
<organizationUrl>https://leaguekit.com</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skip.js.build>false</skip.js.build>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>com.github.bringking</groupId>
<artifactId>requirejs-maven-plugin</artifactId>
<version>2.0.4</version>
<executions>
<execution>
<goals>
<goal>optimize</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
<configuration>
<!-- optional path to a nodejs executable -->
<configFile>
${basedir}/src/main/config/buildconfig.js
</configFile>
<!-- optional parameters to optimizer executable -->
<optimizerParameters>
<parameter>optimize=uglify2</parameter>
<parameter>baseUrl=${baseDir}</parameter>
</optimizerParameters>
<!--
Whether or not to process configFile with maven filters.
If you use this option, some options in your configFile
must resolve to absolute paths (see below)
-->
<filterConfig>
true
</filterConfig>
<skip>
${skip.js.build}
</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- generate javadocs and source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- gpg sign the jars we built -->
<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>
<!-- Handles the release and deploy to the staging repo with a deploy execution (nexus-staging:release) -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>