Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • 1.6.11
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.14
  • 1.5.13
  • 1.5.12
  • 1.5.11
  • 1.5.10
  • 1.5.9
  • 1.5.8
14 results

pom.xml

Blame
  • pom.xml 3.42 KiB
    <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>
      <groupId>vlkb</groupId>
      <artifactId>vlkb-siav2</artifactId>
      <packaging>war</packaging>
      <version>x.y.z</version>
      <name>SIAv2 webapp</name>
      <url>http://maven.apache.org</url>
    
      <properties>
              <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
              <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
              <maven.compiler.source>7</maven.compiler.source>
              <maven.compiler.target>7</maven.compiler.target>
      </properties>
    
    
      <dependencies>
    
              <dependency>
                      <groupId>javax.servlet</groupId>
                      <artifactId>servlet-api</artifactId>
                      <version>2.5</version>
                      <scope>provided</scope>
              </dependency>
    
              <dependency>
                      <groupId>uk.ac.starlink</groupId>
                      <artifactId>stil</artifactId>
                      <version>4.3</version>
              </dependency>
    
              <!-- vlkb-volib and its dependencies -->
    
              <dependency>
                      <groupId>vo</groupId>
                      <artifactId>vlkb-volib</artifactId>
                      <version>0.9.2</version>
              </dependency>
    
              <dependency>
                      <groupId>com.googlecode.json-simple</groupId>
                      <artifactId>json-simple</artifactId>
                      <version>1.1</version>
              </dependency>
    
              <!-- dependency>
                      <groupId>junit</groupId>
                      <artifactId>junit</artifactId>
                      <version>3.8.1</version>
                      <scope>test</scope>
              </dependency -->
    
      </dependencies>
    
    
    
      <build>
              <finalName>${project.artifactId}-${git.buildnumber}</finalName>
              <plugins>
                      <plugin>
                              <groupId>ru.concerteza.buildnumber</groupId>
                              <artifactId>maven-jgit-buildnumber-plugin</artifactId>
                              <version>1.2.7</version>
                              <executions>
                                      <execution>
                                              <id>git-buildnumber</id>
                                              <goals>
                                                      <goal>extract-buildnumber</goal>
                                              </goals>
                                              <phase>prepare-package</phase>
                                      </execution>
                              </executions>
                      </plugin>
                      <plugin>
                              <artifactId>maven-war-plugin</artifactId>
                              <version>3.3.2</version>
                      </plugin>
                      <plugin>
                              <artifactId>maven-compiler-plugin</artifactId>
                              <version>3.8.1</version>
                              <configuration>
                                      <!-- verbose>true</verbose -->
                                      <fork>true</fork>
                                      <executable>/etc/alternatives/javac</executable>
                                      <compilerArgument>-Xlint:unchecked</compilerArgument>
                              </configuration>
                      </plugin>
    
              </plugins>
      </build>
    
    </project>