Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
violet framework
  • Loading branch information
tms08012 committed Jun 7, 2012
0 parents commit d37b882
Show file tree
Hide file tree
Showing 201 changed files with 27,214 additions and 0 deletions.
11 changes: 11 additions & 0 deletions VioletFramework/VioletFramework/.project
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>VioletFramework</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
246 changes: 246 additions & 0 deletions VioletFramework/VioletFramework/horstmann.eclipse.code.formatter.xml

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions VioletFramework/VioletFramework/pom.xml
@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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.horstmann.violet.framework</groupId>
<artifactId>com.horstmann.violet.framework</artifactId>
<name>Violet UML Editor Framework</name>
<version>2.0.0-SNAPSHOT</version>
<description></description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.5</version>
</dependency>
<dependency>
<groupId>jaxme</groupId>
<artifactId>jaxmejs</artifactId>
<version>0.5</version>
</dependency>
<dependency>
<groupId>javax.javaws</groupId>
<artifactId>javaws</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.pgslookandfeel</groupId>
<artifactId>pgslookandfeel</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.l2fprod.common</groupId>
<artifactId>l2fprod-common-tasks</artifactId>
<version>7.3</version>
</dependency>
<dependency>
<groupId>commons-vfs</groupId>
<artifactId>commons-vfs</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.2</version>
</dependency>
<dependency>
<groupId>batik</groupId>
<artifactId>batik-swing</artifactId>
<version>1.6-1</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.gif</include>
<include>**/*.jpg</include>
<include>**/*.png</include>
<include>**/*.txt</include>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>web.sourceforge.net</id>
<name>Violet's Maven Repository</name>
<url>sftp://web.sourceforge.net/home/groups/v/vi/violet/htdocs/maven2/repo/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>violet.repo</id>
<name>Violet's Maven repository (public access)</name>
<url>http://violet.sourceforge.net/maven2/repo/</url>
</repository>
</repositories>
</project>

0 comments on commit d37b882

Please sign in to comment.