Skip to content

Commit

Permalink
#3890 fixed pom for deploy. Updated mas2g
Browse files Browse the repository at this point in the history
  • Loading branch information
Wouter1 committed May 3, 2016
1 parent ae4f880 commit 29bfcf6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions environment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,52 @@
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</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.12</version>
<configuration>
<server>github</server>
<!-- git commit message -->
<message>Maven artifacts for ${project.name} version
${project.version}</message>
<!-- matches distribution management repository url above -->
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<!-- remote branch name -->
<branch>refs/heads/master</branch>
<merge>true</merge>
<includes>
<include>**/*</include>
</includes>
<!-- github repo name -->
<repositoryName>mvn-repo</repositoryName>
<!-- github organization -->
<repositoryOwner>eishub</repositoryOwner>
</configuration>
<executions>
<!-- run site-maven-plugin as part of the build's 'deploy' phase -->
<execution>
<id>git-deploy</id>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>



</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion environment/src/main/GOAL/Tygron.mas2g
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "tygronenv-1.0.2-jar-with-dependencies.jar" as environment
use "tygronenv-1.0.3-jar-with-dependencies.jar" as environment
with map = "testgoalmap" .

define tygron as agent {
Expand Down

0 comments on commit 29bfcf6

Please sign in to comment.