Skip to content

Commit

Permalink
Added distro management for botmill-core and modified .gitignore to i…
Browse files Browse the repository at this point in the history
…nclude ignored sources
  • Loading branch information
Alvin Reyes committed Feb 17, 2017
1 parent 999400d commit ae1a560
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
Expand All @@ -15,4 +12,6 @@ hs_err_pid*
.settings/org.eclipse.m2e.core.prefs
*.prefs
.project
*.classpath
*.classpath
.settings/
target/
46 changes: 44 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,51 @@
<version>1.0.0-SNAPSHOT</version>
<name>BotMill Core</name>
<description>Shared library for the BotMill framework.</description>

<licenses>
<license>
<name>MIT License</name>
<url>https://raw.githubusercontent.com/BotMill/botmill-core/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>BotMill</name>
<url>http://www.botmill.io</url>
</organization>
<developers>
<developer>
<name>Donato Rimenti</name>
<roles>
<role>Software Developer</role>
</roles>
<email>[email protected]</email>
</developer>
<developer>
<name>Alvin Reyes</name>
<roles>
<role>Software Developer</role>
</roles>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>https://github.com/BotMill/fb-botmill</url>
<connection>scm:git:git://github.com/BotMill/botmill-core.git</connection>
<developerConnection>scm:git:[email protected]:BotMill/botmill-core.git</developerConnection>
<tag>fb-botmill-1.2.1</tag>
</scm>
<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>
<dependencies>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down

0 comments on commit ae1a560

Please sign in to comment.