Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed build problem #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
*.jar
*.war
*.ear

target
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
language: java

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
maven-websequencediagrams-plugin
================================

Maven plugin which generates sequence diagrams as .pngs from www.websequencediagrams.com.
Maven plugin which generates sequence diagrams as .pngs from www.websequencediagrams.com.

[![Build Status](https://travis-ci.org/mmcc007/maven-websequencediagrams-plugin.svg?branch=master&style=flat-square)](https://travis-ci.org/mmcc007/maven-websequencediagrams-plugin)

To build and install plugin do

mvn install
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.websequencediagrams</groupId>
<artifactId>maven-websequencediagrams-plugin</artifactId>
<artifactId>websequencediagrams-maven-plugin</artifactId>
<version>0.0.1</version>
<packaging>maven-plugin</packaging>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @goal generate-diagrams
* @phase package
*/
@Mojo(name = "generate-diagrams", defaultPhase = LifecyclePhase.PACKAGE)
//@Mojo(name = "generate-diagrams", defaultPhase = LifecyclePhase.PACKAGE)
public class WebSequenceDiagramMojo extends AbstractMojo {

/**
Expand Down Expand Up @@ -202,4 +202,4 @@ private Proxy initProxy() {
return proxy;
}

}
}