-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added distro management for botmill-core and modified .gitignore to i…
…nclude ignored sources
- Loading branch information
Alvin Reyes
committed
Feb 17, 2017
1 parent
999400d
commit ae1a560
Showing
2 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|