Revision 40282

View differences:

branches/v2_0_0_prep/libraries/libRemoteServices/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
                      
7
	<modelVersion>4.0.0</modelVersion>
8
	<artifactId>org.gvsig.remoteclient</artifactId>
9
	<packaging>jar</packaging>
10
	<version>2.0-SNAPSHOT</version>
11
	<name>libRemoteServices</name>
12
	<url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
13
	<parent>
14
		<groupId>org.gvsig</groupId>
15
		<artifactId>gvsig-base-library-pom</artifactId>
16
		<version>2.0</version>
17
	</parent>	
18
        <scm>
19
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}/</connection>
20
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}/</developerConnection>
21
        <url>https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}</url>
22
    </scm>
23
    
24
	<dependencies>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
	        <artifactId>org.gvsig.tools.lib</artifactId>
28
            <scope>compile</scope>
29
      	</dependency>
30
      	<dependency>
31
			<groupId>org.gvsig</groupId>
32
			<artifactId>org.gvsig.compat</artifactId>
33
            <scope>compile</scope>
34
		</dependency>
35
      	<dependency>
36
			<groupId>org.gvsig</groupId>
37
	        <artifactId>org.gvsig.fmap.geometry</artifactId>
38
            <scope>compile</scope>
39
      	</dependency>
40
        <dependency>
41
            <groupId>net.sf.kxml</groupId>
42
            <artifactId>kxml2</artifactId>
43
            <scope>compile</scope>
44
        </dependency>
45
        <dependency>
46
            <groupId>xmlpull</groupId>
47
            <artifactId>xmlpull</artifactId>
48
            <scope>compile</scope>
49
        </dependency>
50
	</dependencies>
51
	<properties>
52
		<build-dir>${basedir}/../build</build-dir>
53
        <eclipse.project.name>libRemoteServices</eclipse.project.name>
54
	</properties>
55
	<profiles>
56
		<profile>
57
			<id>se</id>
58
			<dependencies>
59
				<dependency>
60
					<groupId>org.gvsig</groupId>
61
					<artifactId>org.gvsig.compat</artifactId>
62
					<classifier>se</classifier>
63
                    <scope>test</scope>
64
				</dependency>
65
			</dependencies>
66
		</profile>
67
		<profile>
68
			<id>cdc</id>
69
			<dependencies>
70
				<dependency>
71
					<groupId>org.gvsig.mobile</groupId>
72
					<artifactId>org.gvsig.mobile.compat</artifactId>
73
					<version>2.0-SNAPSHOT</version>
74
                    <scope>test</scope>
75
				</dependency>
76
			</dependencies>
77
			<build>
78
				<plugins>
79
					<plugin>
80
						<groupId>org.apache.maven.plugins</groupId>
81
						<artifactId>maven-compiler-plugin</artifactId>
82
						<configuration>
83
							<source>1.4</source>
84
							<target>1.4</target>
85
						</configuration>
86
					</plugin>
87
				</plugins>
88
			</build>
89
		</profile>
90
	</profiles>
91
	<build>
92
		<sourceDirectory>src</sourceDirectory>
93
		<testSourceDirectory>test</testSourceDirectory>
94
		
95
		<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
96
		<plugins>
97
			<plugin>
98
				<groupId>org.apache.maven.plugins</groupId>
99
				<artifactId>maven-surefire-plugin</artifactId>
100
				<configuration>
101
					<skipTests>true</skipTests>
102
				</configuration>
103
			</plugin>
104
		    <plugin>
105
		      <artifactId>maven-release-plugin</artifactId>
106
		      <version>2.0</version>
107
		      <configuration>
108
		        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/${artifactId}</tagBase>
109
		      </configuration>
110
		    </plugin>
111
		</plugins>
112
	</build>
113
</project>
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<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">
4
                      
5
	<modelVersion>4.0.0</modelVersion>
6
	<artifactId>org.gvsig.remoteclient</artifactId>
7
	<packaging>jar</packaging>
8
	<version>2.0</version>
9
	<name>libRemoteServices</name>
10
	<url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>gvsig-base-library-pom</artifactId>
14
		<version>2.0</version>
15
	</parent>	
16
        <scm>
17
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/org.gvsig.remoteclient/2.0</connection>
18
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/org.gvsig.remoteclient/2.0</developerConnection>
19
        <url>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/org.gvsig.remoteclient/2.0</url>
20
    </scm>
21
    
22
	<dependencies>
23
		<dependency>
24
			<groupId>org.gvsig</groupId>
25
	        <artifactId>org.gvsig.tools.lib</artifactId>
26
            <scope>compile</scope>
27
      	</dependency>
28
      	<dependency>
29
			<groupId>org.gvsig</groupId>
30
			<artifactId>org.gvsig.compat</artifactId>
31
            <scope>compile</scope>
32
		</dependency>
33
      	<dependency>
34
			<groupId>org.gvsig</groupId>
35
	        <artifactId>org.gvsig.fmap.geometry</artifactId>
36
            <scope>compile</scope>
37
      	</dependency>
38
        <dependency>
39
            <groupId>net.sf.kxml</groupId>
40
            <artifactId>kxml2</artifactId>
41
            <scope>compile</scope>
42
        </dependency>
43
        <dependency>
44
            <groupId>xmlpull</groupId>
45
            <artifactId>xmlpull</artifactId>
46
            <scope>compile</scope>
47
        </dependency>
48
	</dependencies>
49
	<properties>
50
		<build-dir>${basedir}/../build</build-dir>
51
        <eclipse.project.name>libRemoteServices</eclipse.project.name>
52
	</properties>
53
	<profiles>
54
		<profile>
55
			<id>se</id>
56
			<dependencies>
57
				<dependency>
58
					<groupId>org.gvsig</groupId>
59
					<artifactId>org.gvsig.compat</artifactId>
60
					<classifier>se</classifier>
61
                    <scope>test</scope>
62
				</dependency>
63
			</dependencies>
64
		</profile>
65
		<profile>
66
			<id>cdc</id>
67
			<dependencies>
68
				<dependency>
69
					<groupId>org.gvsig.mobile</groupId>
70
					<artifactId>org.gvsig.mobile.compat</artifactId>
71
					<version>2.0-SNAPSHOT</version>
72
                    <scope>test</scope>
73
				</dependency>
74
			</dependencies>
75
			<build>
76
				<plugins>
77
					<plugin>
78
						<groupId>org.apache.maven.plugins</groupId>
79
						<artifactId>maven-compiler-plugin</artifactId>
80
						<configuration>
81
							<source>1.4</source>
82
							<target>1.4</target>
83
						</configuration>
84
					</plugin>
85
				</plugins>
86
			</build>
87
		</profile>
88
	</profiles>
89
	<build>
90
		<sourceDirectory>src</sourceDirectory>
91
		<testSourceDirectory>test</testSourceDirectory>
92
		
93
		<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
94
		<plugins>
95
			<plugin>
96
				<groupId>org.apache.maven.plugins</groupId>
97
				<artifactId>maven-surefire-plugin</artifactId>
98
				<configuration>
99
					<skipTests>true</skipTests>
100
				</configuration>
101
			</plugin>
102
		    <plugin>
103
		      <artifactId>maven-release-plugin</artifactId>
104
		      <version>2.0</version>
105
		      <configuration>
106
		        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/${artifactId}</tagBase>
107
		      </configuration>
108
		    </plugin>
109
		</plugins>
110
	</build>
111
</project>

Also available in: Unified diff