Skip to content

Commit

Permalink
Merge pull request #2 from BeeswaxIO/adding-maven-build-file
Browse files Browse the repository at this point in the history
Adding maven build file and updating README
  • Loading branch information
darkcrawler01 committed May 31, 2016
2 parents a7f50a0 + ee27e52 commit a4e3c61
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# beeswax-api
Beeswax API for custom bidders

Dependency Information:
We recommend [JitPack.io](https://jitpack.io/#BeeswaxIO/beeswax-api)

<dependency>
<groupId>com.github.BeeswaxIO</groupId>
<artifactId>beeswax-api</artifactId>
<version>2016-05-30</version>
</dependency>
96 changes: 96 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<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.beeswax</groupId>
<artifactId>beeswax-api</artifactId>
<version>20160530</version>
<name>Beeswax API</name>
<packaging>jar</packaging>
<description>Builds a jar for all Proto Classes in Beeswax</description>

<url>https://github.com/BeeswaxIO/beeswax-api</url>

<licenses>
<license>
<name>Copyright 2016, Beeswax.IO Inc.</name>
</license>
</licenses>

<organization>
<name>Beeswax Corporation</name>
<url>http://beeswax.com</url>
</organization>

<scm>
<url>https://github.com/BeeswaxIO/beeswax-api</url>
</scm>

<issueManagement>
<url>https://github.com/BeeswaxIO/beeswax-api/issues</url>
<system>GitHub Issues</system>
</issueManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
<configuration>
<protocExecutable>/usr/bin/protoc</protocExecutable>
<protoSourceRoot>${basedir}/</protoSourceRoot>
<checkStaleness>true</checkStaleness>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.0.0-beta-3</version>
</dependency>
</dependencies>

</project>

0 comments on commit a4e3c61

Please sign in to comment.