Skip to content

Commit

Permalink
bumping up to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Mar 25, 2013
1 parent 13046ac commit b3b19f7
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ and the object back to XML.
Status Status
------ ------


The latest is 1.0.1. Some things may not work. The latest is 1.0.2. Some things may not work.
I'd really appreciate if you could run it against your favorite xsd I'd really appreciate if you could run it against your favorite xsd
file and let me know the result. file and let me know the result.


Expand Down
29 changes: 29 additions & 0 deletions cli/src/main/ls/1.0.2.json
@@ -0,0 +1,29 @@
{
"organization" : "org.scalaxb",
"name" : "scalaxb",
"version" : "1.0.2",
"description" : "scalaxb is an XML data-binding tool for Scala that supports W3C XML Schema (xsd) and wsdl.",
"site" : "http://scalaxb.org",
"tags" : [ "xml", "soap", "wsdl", "code-generation" ],
"docs" : "",
"resolvers" : [ "https://oss.sonatype.org/content/repositories/public" ],
"dependencies" : [ {
"organization" : "org.scala-sbt",
"name" : "launcher-interface",
"version" : "0.12.1"
}, {
"organization" : "com.github.scopt",
"name" : "scopt_2.9.1",
"version" : "2.1.0"
}, {
"organization" : "log4j",
"name" : "log4j",
"version" : "1.2.17"
} ],
"scalas" : [ "2.10.1", "2.9.2", "2.9.1" ],
"licenses" : [ {
"name" : "MIT License",
"url" : "https://github.com/eed3si9n/scalaxb/blob/master/LICENSE"
} ],
"sbt" : false
}
2 changes: 1 addition & 1 deletion mvn-scalaxb/pom.xml
Expand Up @@ -10,7 +10,7 @@


<groupId>org.scalaxb</groupId> <groupId>org.scalaxb</groupId>
<artifactId>scalaxb-maven-plugin</artifactId> <artifactId>scalaxb-maven-plugin</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
<packaging>maven-plugin</packaging> <packaging>maven-plugin</packaging>


<name>scalaxb Maven Plugin</name> <name>scalaxb Maven Plugin</name>
Expand Down
6 changes: 3 additions & 3 deletions project/build.scala
Expand Up @@ -8,13 +8,13 @@ object Builds extends Build {
import conscript.Harness.conscriptSettings import conscript.Harness.conscriptSettings


lazy val buildSettings = Defaults.defaultSettings ++ customLsSettings ++ Seq( lazy val buildSettings = Defaults.defaultSettings ++ customLsSettings ++ Seq(
version := "1.0.2-SNAPSHOT", version := "1.0.2",
organization := "org.scalaxb", organization := "org.scalaxb",
homepage := Some(url("http://scalaxb.org")), homepage := Some(url("http://scalaxb.org")),
licenses := Seq("MIT License" -> url("https://github.com/eed3si9n/scalaxb/blob/master/LICENSE")), licenses := Seq("MIT License" -> url("https://github.com/eed3si9n/scalaxb/blob/master/LICENSE")),
description := """scalaxb is an XML data-binding tool for Scala that supports W3C XML Schema (xsd) and wsdl.""", description := """scalaxb is an XML data-binding tool for Scala that supports W3C XML Schema (xsd) and wsdl.""",
scalaVersion := "2.10.0", scalaVersion := "2.10.1",
crossScalaVersions := Seq("2.10.0", "2.9.2", "2.9.1"), crossScalaVersions := Seq("2.10.1", "2.9.2", "2.9.1"),
scalacOptions := Seq("-deprecation", "-unchecked"), scalacOptions := Seq("-deprecation", "-unchecked"),
pomExtra := (<scm> pomExtra := (<scm>
<url>git@github.com:eed3si9n/scalaxb.git</url> <url>git@github.com:eed3si9n/scalaxb.git</url>
Expand Down
17 changes: 17 additions & 0 deletions sbt-scalaxb/src/main/ls/1.0.2.json
@@ -0,0 +1,17 @@
{
"organization" : "org.scalaxb",
"name" : "sbt-scalaxb",
"version" : "1.0.2",
"description" : "sbt plugin to run scalaxb",
"site" : "http://scalaxb.org",
"tags" : [ "xml", "soap", "wsdl", "code-generation" ],
"docs" : "",
"resolvers" : [ "https://oss.sonatype.org/content/repositories/public" ],
"dependencies" : [ ],
"scalas" : [ "2.9.2" ],
"licenses" : [ {
"name" : "MIT License",
"url" : "https://github.com/eed3si9n/scalaxb/blob/master/LICENSE"
} ],
"sbt" : true
}
4 changes: 2 additions & 2 deletions src/main/conscript/scalaxb/launchconfig
@@ -1,11 +1,11 @@
[app] [app]
version: 1.0.1 version: 1.0.2
org: org.scalaxb org: org.scalaxb
name: scalaxb_2.10 name: scalaxb_2.10
class: scalaxb.compiler.SbtApp class: scalaxb.compiler.SbtApp
cross-versioned: false cross-versioned: false
[scala] [scala]
version: 2.10.0 version: 2.10.1
[repositories] [repositories]
sonatype-public: https://oss.sonatype.org/content/repositories/public/ sonatype-public: https://oss.sonatype.org/content/repositories/public/
maven-central maven-central

0 comments on commit b3b19f7

Please sign in to comment.