Main repository of MikuMikuStudio
修订版 | 455e8c7438c7d3a0d777f3c4014c5cf6cd30cc0c (tree) |
---|---|
时间 | 2014-02-20 06:21:26 |
作者 | kobayasi <kobayasi@pscn...> |
Commiter | kobayasi |
Release version 0.8.0
@@ -1,7 +1,7 @@ | ||
1 | 1 | lazy val root = |
2 | 2 | (project.in(file(".")) |
3 | 3 | .settings(Common.settings: _*) |
4 | - .aggregate(engine, desktop, android, gdx, niftygui) | |
4 | + .aggregate(engine, desktop/*, android*/, gdx/*, niftygui*/) | |
5 | 5 | ) |
6 | 6 | |
7 | 7 | lazy val engine = project |
@@ -12,7 +12,7 @@ lazy val android = project | ||
12 | 12 | |
13 | 13 | lazy val gdx = project.dependsOn(engine) |
14 | 14 | |
15 | -lazy val niftygui = project.dependsOn(engine) | |
15 | +//lazy val niftygui = project.dependsOn(engine) | |
16 | 16 | |
17 | 17 | publishArtifact := false |
18 | 18 |
@@ -24,12 +24,12 @@ unmanagedSourceDirectories in Compile := Seq( | ||
24 | 24 | , baseDirectory.value / "src/ogre" |
25 | 25 | , baseDirectory.value / "src/pack" |
26 | 26 | , baseDirectory.value / "src/tools" |
27 | - , baseDirectory.value / "src/terrain" | |
27 | +// , baseDirectory.value / "src/terrain" | |
28 | 28 | , baseDirectory.value / "src/xml" |
29 | 29 | ) |
30 | 30 | |
31 | 31 | sources in Compile ~= { |
32 | - dirs => dirs filter(file => (!file.getAbsolutePath.contains("cinematic"))) | |
32 | + dirs => dirs filter(file => (!file.getAbsolutePath.contains("cinematic") && !file.getAbsolutePath.contains("CollisionShapeFactory.java"))) | |
33 | 33 | } |
34 | 34 | |
35 | 35 | unmanagedResourceDirectories in Compile <<= unmanagedSourceDirectories in Compile |
@@ -44,7 +44,7 @@ libraryDependencies += "java3d" % "vecmath" % "1.3.1" | ||
44 | 44 | |
45 | 45 | libraryDependencies += "xpp3" % "xpp3" % "1.1.4c" |
46 | 46 | |
47 | -libraryDependencies += "com.jme3" % "noise" % "3.0.0-SNAPSHOT" | |
47 | +//libraryDependencies += "com.jme3" % "noise" % "3.0.0-SNAPSHOT" | |
48 | 48 | |
49 | 49 | libraryDependencies += "net.sf.sociaal" % "j-ogg-oggd" % "3.0.0.20130526" |
50 | 50 |
@@ -3,5 +3,5 @@ Common.settings | ||
3 | 3 | name := "mms-gdx" |
4 | 4 | |
5 | 5 | libraryDependencies ++= Seq( |
6 | - "com.badlogicgames.gdx" % "gdx" % "1.0-SNAPSHOT" | |
6 | + "com.badlogicgames.gdx" % "gdx" % "0.9.9" | |
7 | 7 | ) |
\ No newline at end of file |
@@ -4,7 +4,7 @@ import sbt.Keys._ | ||
4 | 4 | object Common { |
5 | 5 | lazy val settings = Seq( |
6 | 6 | organization := "info.projectkyoto" |
7 | - , version := "1.0.0-SNAPSHOT" | |
7 | + , version := "0.8.0" | |
8 | 8 | // , homepage := Some(url("https://github.com/chototsu/MikuMikuStudio")) |
9 | 9 | , startYear := Some(2010) |
10 | 10 | , description := "A game engine compatible with MikuMikuDance." |
@@ -13,8 +13,8 @@ object Common { | ||
13 | 13 | , crossPaths := false |
14 | 14 | , javacOptions ++= Seq("-encoding", "UTF-8", "-source", "1.6", "-target", "1.6") |
15 | 15 | , javacOptions in doc := Seq("-locale", "en_US", "-encoding", "UTF-8", "-source", "1.6") |
16 | - , resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots" | |
17 | - , resolvers += "nifty-maven-repo.sourceforge.net" at "http://nifty-gui.sourceforge.net/nifty-maven-repo" | |
16 | +// , resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots" | |
17 | +// , resolvers += "nifty-maven-repo.sourceforge.net" at "http://nifty-gui.sourceforge.net/nifty-maven-repo" | |
18 | 18 | , pomExtra := ( |
19 | 19 | <url>https://github.com/chototsu/MikuMikuStudio</url> |
20 | 20 | <licenses> |
@@ -44,6 +44,8 @@ object Common { | ||
44 | 44 | Some("releases" at nexus + "service/local/staging/deploy/maven2") |
45 | 45 | } |
46 | 46 | , publishArtifact in Test := false |
47 | + , pomIncludeRepository := { _ => false } | |
48 | + | |
47 | 49 | ) |
48 | 50 | } |
49 | 51 |