Revision: 3469
Author: silva.josemanuel1
Date: Thu Apr 22 13:52:52 2010
Log: We killed Maven, but it survived! Now it is truly dead.
http://code.google.com/p/power-architect/source/detail?r=3469
Deleted:
/trunk/pom.xml
=======================================
--- /trunk/pom.xml Mon Dec 21 11:04:05 2009
+++ /dev/null
@@ -1,323 +0,0 @@
-<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>ca.sqlpower</groupId>
- <artifactId>power-architect</artifactId>
- <packaging>jar</packaging>
- <version>0.9.14-SNAPSHOT</version>
- <name>power-architect</name>
- <url>http://code.google.com/p/power-architect</url>
-
- <organization>
- <name>SQL Power Group Inc.</name>
- <url>http://www.sqlpower.ca/</url>
- </organization>
-
- <licenses>
- <license>
- <name>GNU Public License Version 3</name>
- <url>http://www.gnu.org/licenses/gpl.html</url>
- </license>
- </licenses>
-
- <build>
- <directory>dist</directory>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>regress</testSourceDirectory>
- <outputDirectory>build</outputDirectory>
- <testOutputDirectory>build-tests</testOutputDirectory>
-
- <resources>
- <resource>
- <directory>src/icons</directory>
- <includes>
- <include>**</include>
- </includes>
- <targetPath>icons</targetPath>
- </resource>
- <resource>
- <directory>src</directory>
- <includes>
- <include>log4j.properties</include>
-
<include>**/messages*.properties</include>
- </includes>
- </resource>
- </resources>
-
- <plugins>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <configuration>
- <filesets>
- <fileset>
- <directory>staging</directory>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <verbose>true</verbose>
- <fork>true</fork>
- <!-- You MUST set this if your default JDK
is not Java 5 -->
-
<!--<executable>${JAVA_5_HOME}/bin/javac</executable> -->
- <compilerVersion>1.5</compilerVersion>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <argLine>-Xmx1024m</argLine>
-
<reportsDirectory>dist/test-results</reportsDirectory>
- <excludes>
-
<exclude>**/ArchitectTestCase*</exclude>
-
<exclude>**/TestArchitectSwingWorker*</exclude>
-
<exclude>**/TestASUtilsMenu*</exclude>
-
<exclude>**/TestFolder$*</exclude>
-
<exclude>**/TestSQLColumn$*</exclude>
-
<exclude>**/TestSQLDatabase$*</exclude>
-
<exclude>**/TestSQLIndex$*</exclude>
-
<exclude>**/TestSQLTable$*</exclude>
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-dependencies</id>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
-
<outputDirectory>staging/lib</outputDirectory>
-
<overWriteReleases>false</overWriteReleases>
-
<overWriteSnapshots>false</overWriteSnapshots>
- <overWriteIfNewer>true</overWriteIfNewer>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
-
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
-
<descriptor>assembly/assembly-generic.xml</descriptor>
- </descriptors>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <finalName>architect</finalName>
- <outputDirectory>staging</outputDirectory>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
-
<mainClass>ca.sqlpower.architect.swingui.ArchitectFrame</mainClass>
- <classpathPrefix>lib/</classpathPrefix>
- </manifest>
- <manifestEntries>
- <Class-Path>jdbc/</Class-Path>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.codehaus.izpack</groupId>
- <artifactId>izpack-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>izpack</goal>
- </goals>
- <configuration>
- <izpackBasedir>installer</izpackBasedir>
-
<descriptor>ext-tools-home/izpack/install.xml</descriptor>
-
<installerFile>dist/Architect-Setup-Windows-jdbc-${project.version}.jar</installerFile>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-report-plugin</artifactId>
- <configuration>
- <outputDirectory>dist/reports</outputDirectory>
- <reportsDirectory>dist/test-results</reportsDirectory>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
-
- <dependencies>
- <dependency>
- <groupId>ca.sqlpower</groupId>
- <artifactId>sqlpower-library</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.8</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>com.jgoodies</groupId>
- <artifactId>forms</artifactId>
- <version>1.1.0</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-pool</groupId>
- <artifactId>commons-pool</artifactId>
- <version>1.0.1</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-dbcp</groupId>
- <artifactId>commons-dbcp</artifactId>
- <version>1.2.1</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-vfs</groupId>
- <artifactId>commons-vfs</artifactId>
- <version>1.0</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>pentaho.kettle</groupId>
- <artifactId>kettle-engine</artifactId>
- <version>3.2.2</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>pentaho.kettle</groupId>
- <artifactId>kettle-core</artifactId>
- <version>3.2.2</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>pentaho.kettle</groupId>
- <artifactId>kettle-db</artifactId>
- <version>3.2.2</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>pentaho</groupId>
- <artifactId>mondrian</artifactId>
- <version>3.0.3</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>jfree</groupId>
- <artifactId>jcommon</artifactId>
- <version>1.0.0</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>jfree</groupId>
- <artifactId>jfreechart</artifactId>
- <version>1.0.1</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>itext</artifactId>
- <version>2.0.8</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>javax.help</groupId>
- <artifactId>javahelp</artifactId>
- <version>2.0.02</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>2.0.6</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>gsbase</groupId>
- <artifactId>gsbase</artifactId>
- <version>2.0.1</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>ca.sqlpower</groupId>
- <artifactId>sqlpower-library</artifactId>
- <version>1.0-SNAPSHOT</version>
- <classifier>tests</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>pentaho-repo</id>
- <url>http://repo.pentaho.org/artifactory/pentaho/</url>
- </repository>
- </repositories>
-</project>
--
Subscription settings:
http://groups.google.com/group/architect-commits/subscribe?hl=en