• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

修訂455e8c7438c7d3a0d777f3c4014c5cf6cd30cc0c (tree)
時間2014-02-20 06:21:26
作者kobayasi <kobayasi@pscn...>
Commiterkobayasi

Log Message

Release version 0.8.0

Change Summary

差異

--- a/build.sbt
+++ b/build.sbt
@@ -1,7 +1,7 @@
11 lazy val root =
22 (project.in(file("."))
33 .settings(Common.settings: _*)
4- .aggregate(engine, desktop, android, gdx, niftygui)
4+ .aggregate(engine, desktop/*, android*/, gdx/*, niftygui*/)
55 )
66
77 lazy val engine = project
@@ -12,7 +12,7 @@ lazy val android = project
1212
1313 lazy val gdx = project.dependsOn(engine)
1414
15-lazy val niftygui = project.dependsOn(engine)
15+//lazy val niftygui = project.dependsOn(engine)
1616
1717 publishArtifact := false
1818
--- a/engine/build.sbt
+++ b/engine/build.sbt
@@ -24,12 +24,12 @@ unmanagedSourceDirectories in Compile := Seq(
2424 , baseDirectory.value / "src/ogre"
2525 , baseDirectory.value / "src/pack"
2626 , baseDirectory.value / "src/tools"
27- , baseDirectory.value / "src/terrain"
27+// , baseDirectory.value / "src/terrain"
2828 , baseDirectory.value / "src/xml"
2929 )
3030
3131 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")))
3333 }
3434
3535 unmanagedResourceDirectories in Compile <<= unmanagedSourceDirectories in Compile
@@ -44,7 +44,7 @@ libraryDependencies += "java3d" % "vecmath" % "1.3.1"
4444
4545 libraryDependencies += "xpp3" % "xpp3" % "1.1.4c"
4646
47-libraryDependencies += "com.jme3" % "noise" % "3.0.0-SNAPSHOT"
47+//libraryDependencies += "com.jme3" % "noise" % "3.0.0-SNAPSHOT"
4848
4949 libraryDependencies += "net.sf.sociaal" % "j-ogg-oggd" % "3.0.0.20130526"
5050
--- a/gdx/build.sbt
+++ b/gdx/build.sbt
@@ -3,5 +3,5 @@ Common.settings
33 name := "mms-gdx"
44
55 libraryDependencies ++= Seq(
6- "com.badlogicgames.gdx" % "gdx" % "1.0-SNAPSHOT"
6+ "com.badlogicgames.gdx" % "gdx" % "0.9.9"
77 )
\ No newline at end of file
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -4,7 +4,7 @@ import sbt.Keys._
44 object Common {
55 lazy val settings = Seq(
66 organization := "info.projectkyoto"
7- , version := "1.0.0-SNAPSHOT"
7+ , version := "0.8.0"
88 // , homepage := Some(url("https://github.com/chototsu/MikuMikuStudio"))
99 , startYear := Some(2010)
1010 , description := "A game engine compatible with MikuMikuDance."
@@ -13,8 +13,8 @@ object Common {
1313 , crossPaths := false
1414 , javacOptions ++= Seq("-encoding", "UTF-8", "-source", "1.6", "-target", "1.6")
1515 , 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"
1818 , pomExtra := (
1919 <url>https://github.com/chototsu/MikuMikuStudio</url>
2020 <licenses>
@@ -44,6 +44,8 @@ object Common {
4444 Some("releases" at nexus + "service/local/staging/deploy/maven2")
4545 }
4646 , publishArtifact in Test := false
47+ , pomIncludeRepository := { _ => false }
48+
4749 )
4850 }
4951