mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
120 lines
4.5 KiB
XML
120 lines
4.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<artifactId>server-web</artifactId>
|
|
<parent>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-parent</artifactId>
|
|
<version>1.0-EAP-build56</version>
|
|
</parent>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>plugin-maven</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-core</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-extensions</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-request</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-util</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-devutils</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wicket</groupId>
|
|
<artifactId>wicket-native-websocket-core</artifactId>
|
|
<version>${wicket.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>font-awesome</artifactId>
|
|
<version>4.5.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>bootstrap</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.agilecoders.wicket</groupId>
|
|
<artifactId>wicket-bootstrap-core</artifactId>
|
|
<version>${wicketbootstrap.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.agilecoders.wicket</groupId>
|
|
<artifactId>wicket-bootstrap-extensions</artifactId>
|
|
<version>${wicketbootstrap.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars.npm</groupId>
|
|
<artifactId>codemirror</artifactId>
|
|
<version>5.21.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-core</artifactId>
|
|
<version>1.0-EAP-build56</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-rest</artifactId>
|
|
<version>1.0-EAP-build56</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-validator</groupId>
|
|
<artifactId>commons-validator</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ocpsoft.prettytime</groupId>
|
|
<artifactId>prettytime</artifactId>
|
|
<version>4.0.1.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-search</artifactId>
|
|
<version>1.0-EAP-build56</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>codeassist</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<moduleClass>com.gitplex.server.web.WebModule</moduleClass>
|
|
<wicket.version>7.3.0</wicket.version>
|
|
<wicketbootstrap.version>0.10.6</wicketbootstrap.version>
|
|
</properties>
|
|
</project> |