Skip to content

Commit 1fd2bfd

Browse files
pwendellrxin
authored andcommitted
Remove remaining references to incubation
This removes some loose ends not caught by the other (incubating -> tlp) patches. @markhamstra this updates the version as you mentioned earlier. Author: Patrick Wendell <[email protected]> Closes #51 from pwendell/tlp and squashes the following commits: d553b1b [Patrick Wendell] Remove remaining references to incubation
1 parent b70823c commit 1fd2bfd

File tree

22 files changed

+54
-58
lines changed

22 files changed

+54
-58
lines changed

assembly/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-assembly_2.10</artifactId>
3030
<name>Spark Project Assembly</name>
31-
<url>http://spark.incubator.apache.org/</url>
31+
<url>http://spark.apache.org/</url>
3232

3333
<properties>
3434
<spark.jar>${project.build.directory}/scala-${scala.binary.version}/${project.artifactId}-${project.version}-hadoop${hadoop.version}.jar</spark.jar>

bagel/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-bagel_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project Bagel</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<dependencies>
3535
<dependency>

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-core_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project Core</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<dependencies>
3535
<dependency>

dev/audit-release/audit_release.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
import urllib2
3232

3333
## Fill in release details here:
34-
RELEASE_URL = "http://people.apache.org/~pwendell/spark-0.9.0-incubating-rc5/"
34+
RELEASE_URL = "http://people.apache.org/~pwendell/spark-1.0.0-rc1/"
3535
RELEASE_KEY = "9E4FE3AF"
3636
RELEASE_REPOSITORY = "https://repository.apache.org/content/repositories/orgapachespark-1006/"
37-
RELEASE_VERSION = "0.9.0-incubating"
37+
RELEASE_VERSION = "1.0.0"
3838
SCALA_VERSION = "2.10.3"
3939
SCALA_BINARY_VERSION = "2.10"
4040
##
@@ -191,10 +191,6 @@ def ensure_path_not_present(x):
191191
test("NOTICE" in base_files, "Tarball contains NOTICE file")
192192
test("LICENSE" in base_files, "Tarball contains LICENSE file")
193193

194-
os.chdir(os.path.join(WORK_DIR, dir_name))
195-
readme = "".join(open("README.md").readlines())
196-
disclaimer_part = "is an effort undergoing incubation"
197-
test(disclaimer_part in readme, "README file contains disclaimer")
198194
os.chdir(WORK_DIR)
199195

200196
for artifact in artifacts:

ec2/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This folder contains a script, spark-ec2, for launching Spark clusters on
22
Amazon EC2. Usage instructions are available online at:
33

4-
http://spark.incubator.apache.org/docs/latest/ec2-scripts.html
4+
http://spark.apache.org/docs/latest/ec2-scripts.html

ec2/spark_ec2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def parse_args():
7373
parser.add_option("-v", "--spark-version", default="0.9.0",
7474
help="Version of Spark to use: 'X.Y.Z' or a specific git hash")
7575
parser.add_option("--spark-git-repo",
76-
default="https://github.com/apache/incubator-spark",
76+
default="https://github.com/apache/spark",
7777
help="Github repo from which to checkout supplied commit hash")
7878
parser.add_option("--hadoop-major-version", default="1",
7979
help="Major version of Hadoop (default: 1)")

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-examples_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project Examples</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<repositories>
3535
<repository>

external/flume/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-streaming-flume_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project External Flume</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<dependencies>
3535
<dependency>

external/kafka/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-streaming-kafka_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project External Kafka</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<dependencies>
3535
<dependency>

external/mqtt/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent</artifactId>
24-
<version>1.0.0-incubating-SNAPSHOT</version>
24+
<version>1.0.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>org.apache.spark</groupId>
2929
<artifactId>spark-streaming-mqtt_2.10</artifactId>
3030
<packaging>jar</packaging>
3131
<name>Spark Project External MQTT</name>
32-
<url>http://spark.incubator.apache.org/</url>
32+
<url>http://spark.apache.org/</url>
3333

3434
<repositories>
3535
<repository>

0 commit comments

Comments
 (0)