This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
65 lines (60 loc) · 2.07 KB
/
pom.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.juicekit</groupId>
<artifactId>juicekit</artifactId>
<version>1.3.0-20100413</version>
</parent>
<artifactId>flare</artifactId>
<name>prefuse Flare (Juice, Inc.)</name>
<packaging>swc</packaging>
<build>
<sourceDirectory>flare/src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<configuration>
<includeSources>
<source>${project.build.sourceDirectory}/../lib</source>
<source>${project.build.sourceDirectory}</source>
</includeSources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flexmojos.version}</version>
<configuration>
<docSources>
<docSource>
${project.build.sourceDirectory}/../lib
</docSource>
<docSource>${project.build.sourceDirectory}</docSource>
</docSources>
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<type>pom</type>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git://github.com/jonbuffington/flare_juicekit.git</connection>
<developerConnection>scm:git:[email protected]:jonbuffington/flare_juicekit.git</developerConnection>
<url>http://github.com/jonbuffington/flare_juicekit/tree/master</url>
</scm>
</project>