Skip to content

Commit ae1a560

Browse files
author
Alvin Reyes
committed
Added distro management for botmill-core and modified .gitignore to include ignored sources
1 parent 999400d commit ae1a560

2 files changed

Lines changed: 47 additions & 6 deletions

File tree

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
*.class
22

3-
# Mobile Tools for Java (J2ME)
4-
.mtj.tmp/
5-
63
# Package Files #
74
*.jar
85
*.war
@@ -15,4 +12,6 @@ hs_err_pid*
1512
.settings/org.eclipse.m2e.core.prefs
1613
*.prefs
1714
.project
18-
*.classpath
15+
*.classpath
16+
.settings/
17+
target/

pom.xml

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,51 @@
66
<version>1.0.0-SNAPSHOT</version>
77
<name>BotMill Core</name>
88
<description>Shared library for the BotMill framework.</description>
9-
9+
<licenses>
10+
<license>
11+
<name>MIT License</name>
12+
<url>https://raw.githubusercontent.com/BotMill/botmill-core/master/LICENSE</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
<organization>
17+
<name>BotMill</name>
18+
<url>http://www.botmill.io</url>
19+
</organization>
20+
<developers>
21+
<developer>
22+
<name>Donato Rimenti</name>
23+
<roles>
24+
<role>Software Developer</role>
25+
</roles>
26+
<email>donato.rimenti@botmill.io</email>
27+
</developer>
28+
<developer>
29+
<name>Alvin Reyes</name>
30+
<roles>
31+
<role>Software Developer</role>
32+
</roles>
33+
<email>alvin.reyes@botmill.io</email>
34+
</developer>
35+
</developers>
36+
<scm>
37+
<url>https://github.com/BotMill/fb-botmill</url>
38+
<connection>scm:git:git://github.com/BotMill/botmill-core.git</connection>
39+
<developerConnection>scm:git:git@github.com:BotMill/botmill-core.git</developerConnection>
40+
<tag>fb-botmill-1.2.1</tag>
41+
</scm>
42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>ossrh</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
<repository>
48+
<id>ossrh</id>
49+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
50+
</repository>
51+
</distributionManagement>
1052
<dependencies>
11-
53+
1254
<dependency>
1355
<groupId>org.slf4j</groupId>
1456
<artifactId>slf4j-api</artifactId>

0 commit comments

Comments
 (0)