Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
fix build.sbt #297
fix build.sbt #297
Conversation
|
Could you explain why this change is necessary? It will help us to understand the intention of the change. Thanks. |
|
without this fix, current msgpackCore pom.xml ( (incorrent <?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>msgpack-core</groupId>
<artifactId>msgpack-core_2.11</artifactId>
<packaging>jar</packaging>
<description>Core library of the MessagePack for Java</description>
<version>0.7.2-SNAPSHOT</version>
<name>msgpack-core</name>
<organization>
<name>msgpack-core</name>
</organization>
<url>http://msgpack.org/</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/msgpack/msgpack-java.git</connection>
<developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection>
<url>github.com/msgpack/msgpack-java.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>frsyuki</id>
<name>Sadayuki Furuhashi</name>
<email>frsyuki@users.sourceforge.jp</email>
</developer>
<developer>
<id>muga</id>
<name>Muga Nishizawa</name>
<email>muga.nishizawa@gmail.com</email>
</developer>
<developer>
<id>oza</id>
<name>Tsuyoshi Ozawa</name>
<url>https://github.com/oza</url>
</developer>
<developer>
<id>komamitsu</id>
<name>Mitsunori Komatsu</name>
<email>komamitsu@gmail.com</email>
</developer>
<developer>
<id>xerial</id>
<name>Taro L. Saito</name>
<email>leo@xerial.org</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.11.7</version>
</dependency>
</dependencies>
</project>fixed <?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-core</artifactId>
<packaging>jar</packaging>
<description>Core library of the MessagePack for Java</description>
<version>0.7.2-SNAPSHOT</version>
<name>msgpack-core</name>
<organization>
<name>MessagePack</name>
<url>http://msgpack.org/</url>
</organization>
<url>http://msgpack.org/</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/msgpack/msgpack-java.git</connection>
<developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection>
<url>github.com/msgpack/msgpack-java.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>frsyuki</id>
<name>Sadayuki Furuhashi</name>
<email>frsyuki@users.sourceforge.jp</email>
</developer>
<developer>
<id>muga</id>
<name>Muga Nishizawa</name>
<email>muga.nishizawa@gmail.com</email>
</developer>
<developer>
<id>oza</id>
<name>Tsuyoshi Ozawa</name>
<url>https://github.com/oza</url>
</developer>
<developer>
<id>komamitsu</id>
<name>Mitsunori Komatsu</name>
<email>komamitsu@gmail.com</email>
</developer>
<developer>
<id>xerial</id>
<name>Taro L. Saito</name>
<email>leo@xerial.org</email>
</developer>
</developers>
<dependencies> </dependencies>
</project> |
|
Thanks for the clarification. I appreciate it :) |
No description provided.