Skip to content

Commit

Permalink
[maven-release-plugin] prepare release wro4j-parent-1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexo committed Nov 1, 2010
1 parent 35a8474 commit 1dc6155
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 186 deletions.
128 changes: 64 additions & 64 deletions pom.xml
Expand Up @@ -3,81 +3,81 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Web Resource Optimizer Parent</name>
<inceptionYear>2008</inceptionYear>
<url>http://code.google.com/p/wro4j/</url>

<description>
The purpose of this project is to reduce the number of requests
needed to load a page and the amount of data to transfer to clients,
achieving drastic improvement of loading times. The resources can be benefit
also from minification and compression.
</description>

<issueManagement>
<system>googleCode</system>
<url>http://code.google.com/p/wro4j/issues/list</url>
</issueManagement>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/alexo/wro4j.git</connection>
<developerConnection>scm:git:git://github.com/alexo/wro4j.git</developerConnection>
<url>http://github.com/alexo/wro4j.git</url>
</scm>

<mailingLists>
<mailingList>
<name>Discussion Group</name>
<post>wro4j@googlegroups.com</post>
<archive>http://groups.google.com/group/wro4j</archive>
</mailingList>
</mailingLists>
<version>1.3.0</version>
<packaging>pom</packaging>
<name>Web Resource Optimizer Parent</name>
<inceptionYear>2008</inceptionYear>
<url>http://code.google.com/p/wro4j/</url>

<description>
The purpose of this project is to reduce the number of requests
needed to load a page and the amount of data to transfer to clients,
achieving drastic improvement of loading times. The resources can be benefit
also from minification and compression.
</description>

<issueManagement>
<system>googleCode</system>
<url>http://code.google.com/p/wro4j/issues/list</url>
</issueManagement>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/alexo/wro4j.git</connection>
<developerConnection>scm:git:git://github.com/alexo/wro4j.git</developerConnection>
<url>http://github.com/alexo/wro4j.git</url>
</scm>

<mailingLists>
<mailingList>
<name>Discussion Group</name>
<post>wro4j@googlegroups.com</post>
<archive>http://groups.google.com/group/wro4j</archive>
</mailingList>
</mailingLists>

<developers>
<developer>
<id>alex.objelean</id>
<name>Alex Objelean</name>
<email>alex.objelean@gmail.com</email>
<timezone>+2</timezone>
</developer>
<developer>
<id>bogdan.csoregi</id>
<name>Bogdan Csoregi</name>
<email>bogdan.csoregi@gmail.com</email>
<timezone>+2</timezone>
</developer>
</developers>

<properties>
<commons-io.dependency>2.0</commons-io.dependency>
<commons-lang.dependency>2.5</commons-lang.dependency>
<slf4j.dependency>1.6.0</slf4j.dependency>
<maven.dependency>2.2.1</maven.dependency>
<mockito.dependency>1.8.5</mockito.dependency>
<developers>
<developer>
<id>alex.objelean</id>
<name>Alex Objelean</name>
<email>alex.objelean@gmail.com</email>
<timezone>+2</timezone>
</developer>
<developer>
<id>bogdan.csoregi</id>
<name>Bogdan Csoregi</name>
<email>bogdan.csoregi@gmail.com</email>
<timezone>+2</timezone>
</developer>
</developers>

<properties>
<commons-io.dependency>2.0</commons-io.dependency>
<commons-lang.dependency>2.5</commons-lang.dependency>
<slf4j.dependency>1.6.0</slf4j.dependency>
<maven.dependency>2.2.1</maven.dependency>
<mockito.dependency>1.8.5</mockito.dependency>
<junit.dependency>4.8.1</junit.dependency>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compile.encoding>UTF-8</maven.compile.encoding>
<maven.test.compile.encoding>UTF-8</maven.test.compile.encoding>
</properties>





<modules>
<module>wro4j-core</module>
<module>wro4j-extensions</module>
<module>wro4j-examples</module>
<module>wro4j-maven-plugin</module>
<module>wro4j-examples</module>
<module>wro4j-maven-plugin</module>
</modules>

<dependencyManagement>
Expand Down
5 changes: 2 additions & 3 deletions wro4j-core/pom.xml
@@ -1,6 +1,5 @@
<?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">
<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>ro.isdc.wro4j</groupId>
Expand All @@ -11,7 +10,7 @@
<parent>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>

<dependencies>
Expand Down
99 changes: 49 additions & 50 deletions wro4j-examples/pom.xml
@@ -1,29 +1,28 @@
<?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">
<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>ro.isdc.wro4j</groupId>
<artifactId>wro4j-examples</artifactId>
<packaging>war</packaging>
<modelVersion>4.0.0</modelVersion>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-examples</artifactId>
<packaging>war</packaging>
<name>Web Resource Optimizer Examples Project</name>
<parent>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
<parent>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0</version>
</parent>

<properties>
<wro4j.version>1.3.0-SNAPSHOT</wro4j.version>
<wicket.version>1.4.12</wicket.version>
<gae.version>1.3.2</gae.version>
<project_charset>UTF-8</project_charset>
</properties>

<dependencies>
</properties>

<dependencies>
<!-- Project Dependencies -->
<dependency>
<groupId>ro.isdc.wro4j</groupId>
<dependency>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-core</artifactId>
</dependency>
<dependency>
Expand All @@ -46,25 +45,25 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.directwebremoting</groupId>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.directwebremoting</groupId>
<artifactId>dwr</artifactId>
<version>2.0.1</version>
<!--<version>3.0.M1</version> -->
</dependency>
<!-- Required by dwr -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<version>2.0.1</version>
<!--<version>3.0.M1</version> -->
</dependency>
<!-- Required by dwr -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<!--Wicket -->
<dependency>
Expand Down Expand Up @@ -160,7 +159,7 @@
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -195,26 +194,26 @@
</configuration>
</plugin>
<!--
<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<version>${wro4j.version}</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<wroManagerFactory>ro.isdc.wro.extensions.manager.standalone.GoogleStandaloneManagerFactory</wroManagerFactory>
<wroManagerFactory>ro.isdc.wro.extensions.manager.standalone.YUIStandaloneManagerFactory</wroManagerFactory>
<wroManagerFactory>ro.isdc.wro.extensions.manager.standalone.FingerprintAwareStandaloneManagerFactory</wroManagerFactory>
<targetGroups>all</targetGroups>
</configuration>
<targetGroups>all</targetGroups>
</configuration>
</plugin>
-->
</plugins>
-->
</plugins>
</build>
<repositories>
<repository>
Expand Down Expand Up @@ -247,5 +246,5 @@
<id>mvnsearch</id>
<url>http://www.mvnsearch.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</project>
</pluginRepositories>
</project>
63 changes: 31 additions & 32 deletions wro4j-extensions/pom.xml
@@ -1,44 +1,43 @@
<?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">
<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>ro.isdc.wro4j</groupId>
<artifactId>wro4j-extensions</artifactId>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-extensions</artifactId>
<packaging>jar</packaging>
<name>Web Resource Optimizer Extensions</name>
<parent>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<parent>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-parent</artifactId>
<version>1.3.0</version>
</parent>
<dependencies>
<dependency>
<dependency>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-core</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<!-- Other Dependencies -->
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<!-- Other Dependencies -->
<!--
<dependency>
<groupId>com.yahoo.platform.yui</groupId>
<artifactId>yuicompressor</artifactId>
<dependency>
<groupId>com.yahoo.platform.yui</groupId>
<artifactId>yuicompressor</artifactId>
</dependency>
-->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</dependency>
<dependency>
<groupId>com.google.closure</groupId>
Expand All @@ -60,5 +59,5 @@
</configuration>
</plugin>
</plugins>
</build>
</project>
</build>
</project>

0 comments on commit 1dc6155

Please sign in to comment.