Skip to content

Commit

Permalink
fixes gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 18, 2014
1 parent 643248a commit 6bb3de9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1 +1,3 @@
/target
dependency-reduced-pom.xml
*.settings*
34 changes: 34 additions & 0 deletions dependency-reduced-pom.xml
Expand Up @@ -46,6 +46,37 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.9</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
<configuration>
<message>Maven artifacts for ${project.version}</message>
<noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<branch>refs/heads/mvn-repo</branch>
<includes>
<include>**/*</include>
</includes>
<repositoryName>pdfindexer</repositoryName>
<repositoryOwner>WolfgangFahl</repositoryOwner>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down Expand Up @@ -79,5 +110,8 @@
<url>file://${project.build.directory}/mvn-repo</url>
</repository>
</distributionManagement>
<properties>
<github.global.server>github</github.global.server>
</properties>
</project>

0 comments on commit 6bb3de9

Please sign in to comment.