mirror of https://github.com/dspinellis/UMLGraph
Maven-related changes
This commit is contained in:
parent
e8b54cfde9
commit
bd246d364f
6
Makefile
6
Makefile
|
|
@ -8,7 +8,7 @@ BALL_TAR_GZ=UMLGraph-$(VERSION).tar.gz
|
|||
ZIPBALL=UMLGraph-$(VERSION).zip
|
||||
DISTDIR=UMLGraph-$(VERSION)
|
||||
WEBDIR=$(UH)/dds/pubs/web/home/sw/umlgraph-mirror
|
||||
DOCLETSRCPATH=src/org/umlgraph/doclet
|
||||
DOCLETSRCPATH=src/main/java/org/umlgraph/doclet
|
||||
DOCLETSRC= \
|
||||
$(DOCLETSRCPATH)/ClassGraph.java \
|
||||
$(DOCLETSRCPATH)/ClassInfo.java \
|
||||
|
|
@ -17,8 +17,8 @@ DOCLETSRC= \
|
|||
$(DOCLETSRCPATH)/UmlGraph.java \
|
||||
$(DOCLETSRCPATH)/Version.java
|
||||
TESTSRC = \
|
||||
src/org/umlgraph/test/DotDiff.java \
|
||||
src/org/umlgraph/test/BasicTest.java
|
||||
src/main/java/org/umlgraph/test/DotDiff.java \
|
||||
src/main/java/org/umlgraph/test/BasicTest.java
|
||||
PICFILE=sequence.pic
|
||||
README=README.txt
|
||||
LICENSE=LICENSE
|
||||
|
|
|
|||
3
TODO
3
TODO
|
|
@ -10,6 +10,9 @@ State diagrams:
|
|||
See state-example.dot
|
||||
See also http://forrst.com/posts/State_Machine_Dont_abuse_the_if-1fE
|
||||
|
||||
Note that Hierarchically nested states cannot be shown in GraphViz,
|
||||
because you can't set shape and labels in cluster, nor can they act
|
||||
as edge targets.
|
||||
|
||||
Add in UmlGraphDoc support for showing package dependencies.
|
||||
See http://java.dzone.com/articles/reverse-engineer-source-code-u#comment-6124
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
</description>
|
||||
|
||||
<!-- set global properties for this build -->
|
||||
<property name="src" location="src"/>
|
||||
<property name="src" location="src/main/java"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="javadoc" location="javadoc"/>
|
||||
<property name="lib" location="lib"/>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* Automatically generated file */
|
||||
package org.umlgraph.doclet;
|
||||
class Version { public static String VERSION = "R5_6-24-gf6e263";}
|
||||
class Version { public static String VERSION = "R5_6_6-1-g9240c4";}
|
||||
|
||||
|
|
@ -32,6 +32,11 @@ You can clone it by running the following command.
|
|||
git clone git@github.com:dspinellis/UMLGraph.git
|
||||
</pre>
|
||||
|
||||
<h2>Package Repository</h2>
|
||||
UMLGraph is available as a Maven package on Sonatype's Nexus repository manager.
|
||||
You can use <a href="https://oss.sonatype.org/index.html#nexus-search;quick~umlgraph">this link</a> to search for it.
|
||||
|
||||
|
||||
<h2>Older Versions</h2>
|
||||
These are links to old versions of UMLGraph, that may be useful to
|
||||
people running older versions of the Java runtime environment.
|
||||
|
|
|
|||
Loading…
Reference in New Issue