public
Description: A GIT version of the Processing.org SVN repo
Homepage: dev.processing.org
Clone URL: git://github.com/omouse/ohprocessing.git
ohprocessing / pom.xml
100644 117 lines (116 sloc) 3.656 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.processing</groupId>
  <artifactId>processing</artifactId>
  <packaging>pom</packaging>
  <name>Processing</name>
  <version>1.0.2-SNAPSHOT</version>
  <modules>
    <module>app</module>
    <module>core</module>
    <module>libraries/dxf</module>
    <module>libraries/net</module>
    <module>libraries/opengl</module>
    <module>libraries/pdf</module>
    <module>libraries/serial</module>
    <module>libraries/video</module>
  </modules>
  <description>Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.</description>
  <url>http://www.processing.org</url>
  <inceptionYear>2001</inceptionYear>
  <issueManagement>
    <system>Bugzilla</system>
    <url>http://dev.processing.org/bugs/</url>
  </issueManagement>
  <developers>
    <developer>
      <id>fry</id>
      <name>Ben Fry</name>
      <url>http://benfry.com/</url>
    </developer>
    <developer>
      <id>reas</id>
      <name>Casey Reas</name>
      <url>http://reas.com/</url>
    </developer>
  </developers>
  <!--
<scm>
<developerConnection>scm:svn:https://processing.org/trunk/processing</developerConnection>
<url>http://dev.processing.org/source/index.cgi/trunk/processing/</url>
</scm>
-->
  <build>
    <pluginManagement>
      <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- TODO: Why isn't the following honored by modules? -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
      </plugins>
    </pluginManagement>
  </build>
  <reporting>
    <plugins>
      <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.6</targetJdk>
</configuration>
      </plugin>
      <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
      </plugin>
      <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
      </plugin>
      <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
      </plugin>
      <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>true</quiet>
</configuration>
      </plugin>
    </plugins>
  </reporting>
  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
    </repository>
  </repositories>
</project>