Browse Source

Prepare to release 1.0.0

tags/release-1.3.2
Manolo Carrasco 13 years ago
parent
commit
985a2445de

+ 1
- 1
devtest/pom.xml View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.0.0-M2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>devtest</artifactId>

+ 1
- 1
gwtquery-core-2.0.1/pom.xml View File

@@ -4,7 +4,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.0.0-M3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<description>Generates an artifact compiled with a concrete gwt version specified in the artifactId</description>

+ 1
- 1
gwtquery-core-2.1.0/pom.xml View File

@@ -4,7 +4,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.0.0-M3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<description>Generates an artifact compiled with a concrete gwt version specified in the artifactId</description>

+ 2
- 2
gwtquery-core/pom.xml View File

@@ -3,7 +3,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.0.0-M3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>gwtquery</artifactId>
@@ -59,7 +59,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
<skipTests>false</skipTests>
<additionalClasspathElements>
<additionalClasspathElement>
${project.build.sourceDirectory}

+ 1
- 1
gwtquery-core/src/main/java/com/google/gwt/query/Query.gwt.xml View File

@@ -51,7 +51,7 @@
</replace-with>
<!-- Selector Engines -->
<replace-with class="com.google.gwt.query.client.impl.SelectorEngineSizzle">
<replace-with class="com.google.gwt.query.client.impl.SelectorEngineCssToXPath">
<when-type-assignable class="com.google.gwt.query.client.impl.HasSelector"/>
</replace-with>
<replace-with class="com.google.gwt.query.client.impl.SelectorEngineSizzleIE">

+ 0
- 1
gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java View File

@@ -16,7 +16,6 @@
package com.google.gwt.query.client.impl;

import com.google.gwt.core.client.GWT;
import com.google.gwt.core.client.RunAsyncCallback;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.Node;
import com.google.gwt.dom.client.NodeList;

+ 2
- 2
pom.xml View File

@@ -3,7 +3,7 @@
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<packaging>pom</packaging>
<version>1.0.0-M3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<name>Gwt Query Project</name>
<url>http://gwtquery.com</url>
<description>GwtQuery is a jQuery clone written in GWT.</description>
@@ -68,7 +68,7 @@
<module>gwtquery-core</module>
<module>gwtquery-core-2.1.0</module>
<module>gwtquery-core-2.0.1</module>
<!-- <module>samples</module> -->
<module>samples</module>
<!-- <module>devtest</module> -->
</modules>


+ 1
- 1
samples/pom.xml View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.0.0-M2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<name>GwtQuery Samples</name>

+ 7
- 5
update_demos_svn.sh View File

@@ -2,19 +2,21 @@

# Script to update demos deployed in svn

V=1.0.0-SNAPSHOT

cp -r samples/target/gwtquery-samples-$V/gwtquery* demos/
cp -r samples/target/gwtquery-samples-$V/index.html demos/
S=`find samples/target/ -type d -name "gwtquery-samples*" | head -1`
[ ! -d "$S" ] && echo "Do not exist folder: $S" && exit

cp -r $S/* demos/
rm -rf demos/WEB-INF demos/META-INF

for i in `find demos -type d | grep -v .svn | sed -e 's#^demos/##g'`
do
[ ! -d samples/target/gwtquery-samples-$V/$i ] && svn delete demos/$i
[ ! -d $S/$i ] && svn delete demos/$i
done

for i in `find demos -type f | grep -v .svn | sed -e 's#^demos/##g'`
do
[ ! -f samples/target/gwtquery-samples-$V/$i ] && svn delete demos/$i
[ ! -f $S/$i ] && svn delete demos/$i
done

find demos | grep -v .svn | xargs svn add

Loading…
Cancel
Save