1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <groupId>com.apple</groupId> 7 <artifactId>AppleJavaExtensions</artifactId> 8 <version>1.4</version> 9 <packaging>jar</packaging> 10 11 <name>AppleJavaExtensions</name> 12 <description>the prefuse visualization toolkit</description> 13 <url>http://developer.apple.com/library/mac/#samplecode/AppleJavaExtensions/Introduction/Intro.html</url> 14 15 <licenses> 16 <license> 17 <name>Apple License</name> 18 <url>http://developer.apple.com/library/mac/#samplecode/AppleJavaExtensions/Listings/README_txt.html#//apple_ref/doc/uid/DTS10000677-README_txt-DontLinkElementID_3</url> 19 <distribution>repo</distribution> 20 <!-- 21 AppleJavaExtensions 22 23 24 25 This is a pluggable jar of stub classes representing the new Apple eAWT and eIO APIs for Java on Mac OS X. The purpose of these stubs is to allow for compilation of eAWT- or eIO-referencing code on platforms other than Mac OS X. The jar file is enclosed in a zip archive for easy expansion on other platforms. 26 27 28 29 These stubs are not intended for the runtime classpath on non-Mac platforms. Please see the OSXAdapter sample for how to write cross-platform code that uses eAWT. 30 31 32 33 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple 34 35 Computer, Inc. ("Apple") in consideration of your agreement to the 36 37 following terms, and your use, installation, modification or 38 39 redistribution of this Apple software constitutes acceptance of these 40 41 terms. If you do not agree with these terms, please do not use, 42 43 install, modify or redistribute this Apple software. 44 45 46 47 In consideration of your agreement to abide by the following terms, and 48 49 subject to these terms, Apple grants you a personal, non-exclusive 50 51 license, under Apple's copyrights in this original Apple software (the 52 53 "Apple Software"), to use, reproduce, modify and redistribute the Apple 54 55 Software, with or without modifications, in source and/or binary forms; 56 57 provided that if you redistribute the Apple Software in its entirety and 58 59 without modifications, you must retain this notice and the following 60 61 text and disclaimers in all such redistributions of the Apple Software. 62 63 Neither the name, trademarks, service marks or logos of Apple Computer, 64 65 Inc. may be used to endorse or promote products derived from the Apple 66 67 Software without specific prior written permission from Apple. Except 68 69 as expressly stated in this notice, no other rights or licenses, express 70 71 or implied, are granted by Apple herein, including but not limited to 72 73 any patent rights that may be infringed by your derivative works or by 74 75 other works in which the Apple Software may be incorporated. 76 77 78 79 The Apple Software is provided by Apple on an "AS IS" basis. APPLE 80 81 MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION 82 83 THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS 84 85 FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND 86 87 OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. 88 89 90 91 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL 92 93 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 94 95 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 96 97 INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, 98 99 MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED 100 101 AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), 102 103 STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE 104 105 POSSIBILITY OF SUCH DAMAGE. 106 107 108 109 Copyright 2003-2010 Apple Inc., All Rights Reserved 110 --> 111 </license> 112 </licenses> 113 114 <distributionManagement> 115 <repository> 116 <id>java.net-m2-repository</id> 117 <url>java-net:/maven2-repository/trunk/repository/</url> 118 </repository> 119 </distributionManagement> 120 121 <repositories> 122 <repository> 123 <id>maven2-repository.dev.java.net</id> 124 <name>Java.net Repository for Maven</name> 125 <url>http://download.java.net/maven/2/</url> 126 </repository> 127 </repositories> 128 129 <build> 130 <plugins> 131 <plugin> 132 <artifactId>maven-antrun-plugin</artifactId> 133 <version>1.6</version> 134 <executions> 135 <execution> 136 <phase>package</phase> 137 <configuration> 138 <target> 139 <get src="http://developer.apple.com/library/mac/samplecode/AppleJavaExtensions/AppleJavaExtensions.zip" 140 dest="target/AppleJavaExtensions-1.4.zip"/> 141 <unzip src="target/AppleJavaExtensions-1.4.zip" dest="target"/> 142 <copy file="target/AppleJavaExtensions/AppleJavaExtensions.jar" 143 tofile="target/AppleJavaExtensions-${project.version}.jar" 144 overwrite="true"/> 145 </target> 146 </configuration> 147 <goals> 148 <goal>run</goal> 149 </goals> 150 </execution> 151 </executions> 152 </plugin> 153 <plugin> 154 <artifactId>maven-deploy-plugin</artifactId> 155 </plugin> 156 </plugins> 157 158 <extensions> 159 <extension> 160 <groupId>org.jvnet.wagon-svn</groupId> 161 <artifactId>wagon-svn</artifactId> 162 <version>1.9</version> 163 </extension> 164 </extensions> 165 </build> 166 </project> 167