Skip to content

Commit

Permalink
commit 24ca0ae107241afc18d441a65c2a49f330eabc22
Browse files Browse the repository at this point in the history
Date:   Wed Jun 29 16:07:31 2016 -0600

    Fixed typo in Vagrantfile.

commit 18e64b131e62e938f8197b569ee4226d89e54f35
Date:   Wed Jun 29 15:48:09 2016 -0600

    Put the profile back in Maven's settings, because evidently it's important.

commit fee505f975e0b696256063176ea62162431baa73
Date:   Wed Jun 29 15:26:31 2016 -0600

    Examples are no longer included in the main JAR.
  • Loading branch information
Oliver, Jonathan committed Jul 3, 2016
1 parent 06ad291 commit 62b81c2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,19 @@ $provision = <<-EOF
sed -i -r "s%<servers>%<servers>\
<server>\
<id>ossr</id>\
<id>ossrh</id>\
<username>smartystreets</username>\
<password>$OSSRH_PASSWORD</password>\
</server>%g" /etc/maven/settings.xml
sed -i -r "s%<profiles>%<profiles>\
<profile>\
<id>ossrh</id>\
<activation>\
<activeByDefault>true</activeByDefault>\
</activation>\
<properties>\
<gpg.executable>gpg</gpg.executable>\
</properties>\
</profile>%g" /etc/maven/settings.xml
EOF
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<excludes>
<exclude>**/examples/</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 62b81c2

Please sign in to comment.