Skip to content

Commit

Permalink
verion update and minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
skaarthik committed Apr 27, 2016
1 parent 901e573 commit 06eb55e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions csharp/SparkCLR.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Microsoft.SparkCLR</id>
<version>1.6.100-TEST-0</version>
<version>1.6.100</version>
<authors>Microsoft Corporation</authors>
<owners>Microsoft Corporation</owners>
<licenseUrl>https://github.com/Microsoft/SparkCLR/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/Microsoft/SparkCLR</projectUrl>
<licenseUrl>https://github.com/Microsoft/Mobius/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/Microsoft/Mobius</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>C# language binding and extensions to Apache Spark</description>
<releaseNotes>See release notes on GitHub https://github.com/Microsoft/SparkCLR/releases</releaseNotes>
<releaseNotes>See release notes on GitHub https://github.com/Microsoft/Mobius/releases</releaseNotes>
<copyright>Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.</copyright>
<tags>C# .NET Apache Spark RDD DataFrame</tags>
<tags>C# .NET Apache Spark RDD DataFrame Streaming SparkCLR Mobius</tags>
<dependencies>
<dependency id="Razorvine.Pyrolite" version="4.10.0" />
<dependency id="Razorvine.Serpent" version="1.12.0" />
Expand Down
6 changes: 3 additions & 3 deletions notes/mobius-release-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The [release in GitHub](https://github.com/Microsoft/Mobius/releases) is a zip f
|-- Data files used by the samples
````

Instructions on running a Mobius app is available at https://github.com/skaarthik/Mobius/blob/master/notes/running-mobius-app.md
Instructions on running a Mobius app is available at https://github.com/Microsoft/Mobius/blob/master/notes/running-mobius-app.md

Mobius samples do not have any extenral dependencies. The dependent jar files and data files used by samples are included in the release. Instructions to run samples are available at
* https://github.com/skaarthik/Mobius/blob/master/notes/windows-instructions.md#running-samples for Windows
* https://github.com/skaarthik/Mobius/blob/master/notes/linx-instructions.md#running-samples for Linux
* https://github.com/Microsoft/Mobius/blob/master/notes/windows-instructions.md#running-samples for Windows
* https://github.com/Microsoft/Mobius/blob/master/notes/linx-instructions.md#running-samples for Linux

Mobius examples under "examples" folder may have external dependencies and may need configuration settings to those dependencies before they can be run. Refer to [Running Examples](https://github.com/Microsoft/Mobius/blob/master/notes/running-mobius-app.md#running-mobius-examples-in-local-mode) for details on how to run each example.

Expand Down
16 changes: 8 additions & 8 deletions scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.sparkclr</groupId>
<artifactId>spark-clr_2.10</artifactId>
<version>1.6.100-TEST-0</version>
<name>SparkCLR Project</name>
<version>1.6.100</version>
<name>Mobius Project</name>
<description>C# language binding and extensions to Apache Spark</description>
<url>https://github.com/Microsoft/sparkclr</url>
<url>https://github.com/Microsoft/Mobius</url>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/Microsoft/SparkCLR/blob/master/LICENSE</url>
<url>https://github.com/Microsoft/Mobius/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>SparkCLR Team</name>
<name>Mobius Team</name>
<email>[email protected]</email>
<organization>Microsoft</organization>
<organizationUrl>http://www.microsoft.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:[email protected]:Microsoft/SparkCLR.git</connection>
<developerConnection>scm:git:[email protected]:Microsoft/SparkCLR.git</developerConnection>
<url>[email protected]:Microsoft/SparkCLR.git</url>
<connection>scm:git:[email protected]:Microsoft/Mobius.git</connection>
<developerConnection>scm:git:[email protected]:Microsoft/Mobius.git</developerConnection>
<url>[email protected]:Microsoft/Mobius.git</url>
</scm>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion scripts/sparkclr-submit.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if "%SPARK_ASSEMBLY_JAR%"=="0" (
exit /b 1
)

if not defined SPARKCLR_JAR (set SPARKCLR_JAR=spark-clr_2.10-1.6.100-TEST-0.jar)
if not defined SPARKCLR_JAR (set SPARKCLR_JAR=spark-clr_2.10-1.6.100.jar)
echo SPARKCLR_JAR=%SPARKCLR_JAR%
set SPARKCLR_CLASSPATH=%SPARKCLR_HOME%\lib\%SPARKCLR_JAR%
REM SPARKCLR_DEBUGMODE_EXT_JARS environment variable is used to specify external dependencies to use in debug mode
Expand Down
2 changes: 1 addition & 1 deletion scripts/sparkclr-submit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ then
exit 1
fi

export SPARKCLR_JAR=spark-clr_2.10-1.6.100-TEST-0.jar
export SPARKCLR_JAR=spark-clr_2.10-1.6.100.jar
export SPARKCLR_CLASSPATH="$SPARKCLR_HOME/lib/$SPARKCLR_JAR"
# SPARKCLR_DEBUGMODE_EXT_JARS environment variable is used to specify external dependencies to use in debug mode
[ ! "$SPARKCLR_DEBUGMODE_EXT_JARS" = "" ] && export SPARKCLR_CLASSPATH="$SPARKCLR_CLASSPATH:$SPARKCLR_DEBUGMODE_EXT_JARS"
Expand Down

0 comments on commit 06eb55e

Please sign in to comment.