My favorites | Sign in
Project Home Downloads Wiki Issues Source
Repository:
Checkout   Browse   Changes   Clones    
 
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
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.jfxtras</groupId>
<artifactId>jfxtras-parent</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>common</module>
<module>controls</module>
</modules>

<dependencies>
<!-- 2011-07-30: this dependency is in no public online Maven repostiory, you have to upload it to the local repository manually (see maven.txt). Therefore it has scope "provided" -->
<dependency>
<groupId>com.oracle</groupId>
<artifactId>javafx-runtime</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<activation>
<os><family>windows</family></os>
</activation>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>javafx-runtime</artifactId>
<version>2.1</version>
<classifier>windows</classifier>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>

<build>
<plugins>

<!-- jfxtras assumes java 1.6 as the minimal JDK -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>false</showDeprecation>
<fork>false</fork>
</configuration>
</plugin>

<!-- surefire 2.7+ runs test classes by annotation instead of classname pattern -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>

<licenses>
<license>
<name>New BSD</name>
<url>http://en.wikipedia.org/wiki/BSD_licenses#3-clause_license_.28.22New_BSD_License.22_or_.22Modified_BSD_License.22.29</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:hg:https://code.google.com/p/jfxtras/</connection>
<developerConnection>scm:hg:https://code.google.com/p/jfxtras/</developerConnection>
<url>http://code.google.com/p/jfxtras/source/browse/</url>
</scm>

<developers>
<developer>
<id>tbee</id>
<name>Tom Eugelink</name>
<email>tbee@tbee.org</email>
</developer>
</developers>
</project>

Change log

0c1b17550c67 by Tom Eugelink on Dec 26, 2011   Diff
improvements to Spinner: making it
editable
Go to: 
Project members, sign in to write a code review

Older revisions

e31559be6494 by Tom Eugelink on Oct 5, 2011   Diff
New BSD license
7d774e78b9ec by Tom Eugelink on Sep 30, 2011   Diff
initial deploy to a repository
38a8dc705caa by Tom Eugelink on Sep 28, 2011   Diff
prepare for deploying
All revisions of this file

File info

Size: 2749 bytes, 92 lines
Powered by Google Project Hosting