RSS

(root)/fsp/fsproxy : /pom.xml (revision 31)

Line Revision Contents
1 16 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5  <modelVersion>4.0.0</modelVersion>
6
7   <groupId>net.fsp</groupId>
8   <artifactId>fsproxy</artifactId>
9   <name>FSP Proxy server</name>
10   <version>0.8</version>
11   <url>http://fsp.sourceforge.net/fsproxy.html</url>
12   <packaging>jar</packaging>
13   <description>Translates FSP v2 protocol into HTTP/1.1.
14   </description>
15   <licenses>
16      <license>
17          <name>MIT License</name>
18      </license>
19   </licenses>
20   <issueManagement>
21         <system>Mantis</system>
22         <url>http://sourceforge.net/apps/mantisbt/fsp/</url>
23   </issueManagement>
24   <developers>
25     <developer>
26        <name>Radim Kolar</name>
27     </developer>
28   </developers>
29   <scm>
30         <connection>scm:bazaar:bzr://fsp.bzr.sourceforge.net/bzrroot/fsp/fsproxy/</connection>
31         <developerConnection>scm:bazaar:bzr+ssh://fsp.bzr.sourceforge.net/bzrroot/fsp/fsproxy/</developerConnection>
32         <url>http://fsp.bzr.sourceforge.net/bzr/fsp/fsproxy/files</url>
33   </scm>
34   <organization>
35      <name>FSP Project</name>
36      <url>http://fsp.sourceforge.net</url>
37   </organization>
38
39   <build>
40     <sourceDirectory>${basedir}/src</sourceDirectory>
41     <outputDirectory>${basedir}/bin</outputDirectory>
42
43     <plugins>
44        <plugin>
45           <groupId>org.apache.maven.plugins</groupId>
46           <artifactId>maven-jar-plugin</artifactId>
47 24           <configuration>
48              <archive>
49                 <manifest>
50                     <mainClass>fspproxy</mainClass>
51                 </manifest>
52              </archive>
53           </configuration>
54 16        </plugin>
55        <plugin>
56           <groupId>org.apache.maven.plugins</groupId>
57           <artifactId>maven-compiler-plugin</artifactId>
58               <configuration>
59                 <source>1.2</source>
60                 <target>1.2</target>
61               </configuration>
62        </plugin>
63        <plugin>
64           <groupId>org.apache.maven.plugins</groupId>
65           <artifactId>maven-assembly-plugin</artifactId>
66           <configuration>
67              <descriptors>
68                    <descriptor>zip.xml</descriptor>
69              </descriptors>
70           </configuration>
71           <executions>
72             <execution>
73               <id>make-assembly</id>
74               <phase>package</phase>
75               <goals>
76                 <goal>single</goal>
77               </goals>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-source-plugin</artifactId>
84         <version>2.1.1</version>
85         <executions>
86           <execution>
87             <id>attach-sources</id>
88             <phase>package</phase>
89             <goals>
90               <goal>jar-no-fork</goal>
91             </goals>
92           </execution>
93         </executions>
94       </plugin>
95     </plugins>
96     <extensions>
97       <extension>
98           <groupId>org.apache.maven.wagon</groupId>
99           <artifactId>wagon-ssh-external</artifactId>
100           <version>1.0-beta-6</version>
101       </extension>
102     </extensions>
103   </build>
104   <repositories>
105         <repository>
106                 <id>fsp-sfnet</id>
107                 <name>FSP releases Maven 2 repo</name>
108                 <url>http://fsp.sourceforge.net/m2</url>
109                 <releases>
110                         <checksumPolicy>fail</checksumPolicy>
111                 </releases>
112                 <snapshots>
113                         <enabled>false</enabled>
114                 </snapshots>
115         </repository>
116   </repositories>
117   <dependencies>
118         <dependency>
119                 <groupId>net.fsp</groupId>
120                 <artifactId>jfsplib</artifactId>
121                 <version>1.0rc8</version>
122         </dependency>
123   </dependencies>
124   <distributionManagement>
125     <repository>
126       <id>fsp-releases</id>
127       <name>FSP releases Maven 2 repo</name>
128       <url>scpexe://shell.sourceforge.net/home/groups/f/fs/fsp/htdocs/m2</url>
129     </repository>
130   </distributionManagement>
131 </project>

Loggerhead is a web-based interface for Bazaar branches