geoserver

Форк
0
77 строк · 2.3 Кб
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
3
 Copyright (C) 2014 - Open Source Geospatial Foundation. All rights reserved.
4
 This code is licensed under the GPL 2.0 license, available at the root
5
 application directory.
6
 -->
7
<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">
8

9
  <modelVersion>4.0.0</modelVersion>
10

11
  <parent>
12
    <groupId>org.geoserver</groupId>
13
    <artifactId>gs-security</artifactId>
14
    <version>2.26-SNAPSHOT</version>
15
  </parent>
16
  <groupId>org.geoserver.security</groupId>
17
  <artifactId>gs-security-tests</artifactId>
18
  <packaging>jar</packaging>
19
  <name>GeoServer Security Tests Module</name>
20

21
  <dependencies>
22
    <dependency>
23
      <groupId>org.geoserver</groupId>
24
      <artifactId>gs-main</artifactId>
25
      <version>${project.version}</version>
26
    </dependency>
27
    <dependency>
28
      <groupId>com.h2database</groupId>
29
      <artifactId>h2</artifactId>
30
      <scope>test</scope>
31
    </dependency>
32
    <dependency>
33
      <groupId>org.geoserver</groupId>
34
      <artifactId>gs-main</artifactId>
35
      <version>${project.version}</version>
36
      <classifier>tests</classifier>
37
    </dependency>
38
    <dependency>
39
      <groupId>org.geoserver</groupId>
40
      <artifactId>gs-platform</artifactId>
41
      <version>${project.version}</version>
42
      <classifier>tests</classifier>
43
    </dependency>
44
    <dependency>
45
      <groupId>org.easymock</groupId>
46
      <artifactId>easymock</artifactId>
47
      <scope>test</scope>
48
    </dependency>
49
    <dependency>
50
      <!-- Factory needed to perform tests on password encryption, the store is not actually used -->
51
      <groupId>org.geotools.jdbc</groupId>
52
      <artifactId>gt-jdbc-postgis</artifactId>
53
      <scope>test</scope>
54
    </dependency>
55

56
  </dependencies>
57

58
  <profiles>
59
    <profile>
60
      <id>macos-github-build</id>
61
      <build>
62
        <plugins>
63
          <plugin>
64
            <groupId>org.apache.maven.plugins</groupId>
65
            <artifactId>maven-surefire-plugin</artifactId>
66
            <configuration>
67
              <systemPropertyVariables>
68
                <macos-github-build>true</macos-github-build>
69
              </systemPropertyVariables>
70
            </configuration>
71
          </plugin>
72
        </plugins>
73
      </build>
74
    </profile>
75
  </profiles>
76

77
</project>
78

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.