Skip to content

Commit

Permalink
update configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Keesun Baik committed Jul 22, 2013
1 parent 0d1e838 commit be247c9
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 19 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ repositories {
dependencies {
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "ch.qos.logback:logback-classic:1.0.6"
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-platform:$vertxVersion"
provided "io.vertx:vertx-core:$vertxVersion"
provided "io.vertx:vertx-platform:$vertxVersion"

testCompile "io.vertx:testtools:$toolsVersion"
testCompile "org.mozilla:rhino:$rhinoVersion"
Expand Down
2 changes: 1 addition & 1 deletion example-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>com.nhncorp</groupId>
<artifactId>mod-socket-io</artifactId>
<version>1.0.0</version>
<version>0.9.0</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
modulename=com.nhncorp.socket-io
version=1.0.0
version=1.0.1
group=com.nhncorp
gradleVersion=1.6
vertxVersion=2.0.0-CR3
toolsVersion=2.0.0-CR3
vertxVersion=2.0.0-final
toolsVersion=2.0.0-final
springVersion=3.1.1.RELEASE
junitVersion=4.10
rhinoVersion=1.7R4
Expand Down
38 changes: 26 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.nhncorp</groupId>
<artifactId>mod-socket-io</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>

<properties>
<internal.repo.path>file:///workspace/mvn-repo/</internal.repo.path>
<java.version>1.7</java.version>
<vertx.version>2.0.0-CR3</vertx.version>
<vertx.version>2.0.0-final</vertx.version>
</properties>

<dependencies>
Expand All @@ -22,13 +22,13 @@
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>testtools</artifactId>
<version>2.0.0-CR1</version>
<scope>test</scope>
<artifactId>vertx-core</artifactId>
<version>${vertx.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<artifactId>vertx-platform</artifactId>
<version>${vertx.version}</version>
<scope>compile</scope>
</dependency>
Expand All @@ -50,18 +50,18 @@
<version>1.0.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-platform</artifactId>
<version>${vertx.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>testtools</artifactId>
<version>${vertx.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -75,6 +75,20 @@
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
7 changes: 6 additions & 1 deletion src/main/conf/mod.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{

"description": "this module implements socket.io server api for the vert.x",
"licenses": ["The Apache Software License Version 2.0"],
"author": "Keeun Baik",
"keywords": ["socket.io", "websocket", "http streaming", "flash socket", "jsonp", "longpolling"],
"developers": ["Keesun Baik"],
"homepage": "https://github.com/keesun/mod-socket-io"
}

0 comments on commit be247c9

Please sign in to comment.