public
Description: Cluster Configuration for JRuby, using Terracotta.
Homepage: http://fabiokung.com/2008/11/22/play-with-jmaglev-yourself/
Clone URL: git://github.com/fabiokung/clustered-jruby.git
clustered-jruby / pom.xml
100644 84 lines (79 sloc) 2.609 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version='1.0' encoding='UTF-8'?>
<!--
All content copyright (c) 2008 Fabio Kung,
except as may otherwise be noted in a separate copyright notice.
All rights reserved.
-->
<project xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
         xsi:schemaLocation='http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd'
         xmlns='http://maven.apache.org/POM/4.0.0'>
  <properties>
    <forgeTags>Integration Module</forgeTags>
    <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
  </properties>
 
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.terracotta.forge</groupId>
    <artifactId>tim-parent</artifactId>
    <version>1.2.1</version>
  </parent>
 
  <packaging>jar</packaging>
  <groupId>com.fabiokung</groupId>
  <artifactId>clustered-jruby</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <name>clustered-jruby</name>
  <description>JRuby Cluster Configuration</description>
 
  <scm>
    <connection>scm:git:git://github.com/fabiokung/clustered-jruby.git</connection>
    <developerConnection>scm:git:git@github.com:fabiokung/clustered-jruby.git</developerConnection>
    <url>http://github.com/fabiokung/clustered-jruby/tree/master</url>
  </scm>
 
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptorRefs>
            <descriptorRef>src</descriptorRef>
            <descriptorRef>bin</descriptorRef>
          </descriptorRefs>
          <outputDirectory>${project.build.directory}/site/downloads</outputDirectory>
        </configuration>
        <executions>
          <execution>
            <phase>site</phase>
            <goals>
              <goal>assembly</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
 
  <repositories>
    <repository>
      <id>terracotta-repository</id>
      <url>http://www.terracotta.org/download/reflector/maven2</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>terracotta-repository</id>
      <url>http://www.terracotta.org/download/reflector/maven2</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>
</project>