maven

Форк
0
215 строк · 7.0 Кб
1
<?xml version="1.0" encoding="UTF-8"?>
2

3
<!--
4
Licensed to the Apache Software Foundation (ASF) under one
5
or more contributor license agreements.  See the NOTICE file
6
distributed with this work for additional information
7
regarding copyright ownership.  The ASF licenses this file
8
to you under the Apache License, Version 2.0 (the
9
"License"); you may not use this file except in compliance
10
with the License.  You may obtain a copy of the License at
11

12
    http://www.apache.org/licenses/LICENSE-2.0
13

14
Unless required by applicable law or agreed to in writing,
15
software distributed under the License is distributed on an
16
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17
KIND, either express or implied.  See the License for the
18
specific language governing permissions and limitations
19
under the License.
20
-->
21

22
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
23
  <modelVersion>4.0.0</modelVersion>
24

25
  <parent>
26
    <groupId>org.apache.maven</groupId>
27
    <artifactId>maven</artifactId>
28
    <version>3.8.5</version>
29
  </parent>
30

31
  <artifactId>maven-embedder</artifactId>
32

33
  <name>Maven Embedder</name>
34
  <description>Maven embeddable component, with CLI and logging support.</description>
35

36
  <dependencies>
37
    <dependency>
38
      <groupId>org.apache.maven</groupId>
39
      <artifactId>maven-settings</artifactId>
40
    </dependency>
41
    <dependency>
42
      <groupId>org.apache.maven</groupId>
43
      <artifactId>maven-settings-builder</artifactId>
44
    </dependency>
45
    <dependency>
46
      <groupId>org.apache.maven</groupId>
47
      <artifactId>maven-core</artifactId>
48
    </dependency>
49
    <dependency>
50
      <groupId>org.apache.maven</groupId>
51
      <artifactId>maven-plugin-api</artifactId>
52
    </dependency>
53
    <dependency>
54
      <groupId>org.apache.maven</groupId>
55
      <artifactId>maven-model</artifactId>
56
    </dependency>
57
    <dependency>
58
      <groupId>org.apache.maven</groupId>
59
      <artifactId>maven-model-builder</artifactId>
60
    </dependency>
61
    <dependency>
62
      <groupId>org.apache.maven</groupId>
63
      <artifactId>maven-builder-support</artifactId>
64
    </dependency>
65
    <dependency>
66
      <groupId>org.apache.maven.resolver</groupId>
67
      <artifactId>maven-resolver-api</artifactId>
68
    </dependency>
69
    <dependency>
70
      <groupId>org.apache.maven.resolver</groupId>
71
      <artifactId>maven-resolver-util</artifactId>
72
    </dependency>
73
    <dependency>
74
      <groupId>org.apache.maven.shared</groupId>
75
      <artifactId>maven-shared-utils</artifactId>
76
    </dependency>
77
    <dependency>
78
       <groupId>com.google.inject</groupId>
79
       <artifactId>guice</artifactId>
80
       <classifier>no_aop</classifier>
81
       <exclusions>
82
         <exclusion>
83
           <groupId>aopalliance</groupId>
84
           <artifactId>aopalliance</artifactId>
85
         </exclusion>
86
         <!-- MNG-6549 remove unused transitive dependencies of Guava, that is a dependency of Guice -->
87
         <exclusion>
88
           <groupId>com.google.code.findbugs</groupId>
89
           <artifactId>jsr305</artifactId>
90
         </exclusion>
91
         <exclusion>
92
           <groupId>org.checkerframework</groupId>
93
           <artifactId>checker-compat-qual</artifactId>
94
         </exclusion>
95
         <exclusion>
96
           <groupId>com.google.errorprone</groupId>
97
           <artifactId>error_prone_annotations</artifactId>
98
         </exclusion>
99
         <exclusion>
100
           <groupId>com.google.j2objc</groupId>
101
           <artifactId>j2objc-annotations</artifactId>
102
         </exclusion>
103
         <exclusion>
104
           <groupId>org.codehaus.mojo</groupId>
105
           <artifactId>animal-sniffer-annotations</artifactId>
106
         </exclusion>
107
         <exclusion>
108
           <groupId>org.checkerframework</groupId>
109
           <artifactId>checker-qual</artifactId>
110
         </exclusion>
111
       </exclusions>
112
     </dependency>
113
    <dependency>
114
      <groupId>javax.inject</groupId>
115
      <artifactId>javax.inject</artifactId>
116
    </dependency>
117
    <!-- This is required for classpath scanning of annotated components -->
118
    <dependency>
119
      <groupId>javax.annotation</groupId>
120
      <artifactId>javax.annotation-api</artifactId>
121
    </dependency>
122
    <dependency>
123
      <groupId>org.codehaus.plexus</groupId>
124
      <artifactId>plexus-utils</artifactId>
125
    </dependency>
126
    <dependency>
127
      <groupId>org.codehaus.plexus</groupId>
128
      <artifactId>plexus-classworlds</artifactId>
129
    </dependency>
130
    <dependency>
131
      <groupId>org.eclipse.sisu</groupId>
132
      <artifactId>org.eclipse.sisu.plexus</artifactId>
133
    </dependency>
134
    <dependency>
135
      <groupId>org.codehaus.plexus</groupId>
136
      <artifactId>plexus-sec-dispatcher</artifactId>
137
    </dependency>
138
    <dependency>
139
      <groupId>org.codehaus.plexus</groupId>
140
      <artifactId>plexus-cipher</artifactId>
141
    </dependency>
142
    <dependency>
143
      <groupId>org.slf4j</groupId>
144
      <artifactId>slf4j-api</artifactId>
145
    </dependency>
146
    <dependency>
147
      <groupId>org.slf4j</groupId>
148
      <artifactId>slf4j-simple</artifactId>
149
      <optional>true</optional>
150
    </dependency>
151
    <dependency>
152
      <groupId>ch.qos.logback</groupId>
153
      <artifactId>logback-classic</artifactId>
154
      <optional>true</optional>
155
    </dependency>
156
    <dependency>
157
      <groupId>org.codehaus.groovy</groupId>
158
      <artifactId>groovy</artifactId>
159
    </dependency>
160
    <!-- CLI -->
161
    <dependency>
162
      <groupId>commons-cli</groupId>
163
      <artifactId>commons-cli</artifactId>
164
    </dependency>
165
    <dependency>
166
      <groupId>org.apache.commons</groupId>
167
      <artifactId>commons-lang3</artifactId>
168
    </dependency>
169
    <dependency>
170
      <groupId>org.mockito</groupId>
171
      <artifactId>mockito-core</artifactId>
172
      <scope>test</scope>
173
    </dependency>
174
    <dependency>
175
      <groupId>org.fusesource.jansi</groupId>
176
      <artifactId>jansi</artifactId>
177
      <scope>test</scope>
178
    </dependency>
179
  </dependencies>
180

181
  <build>
182
    <pluginManagement>
183
      <plugins>
184
        <plugin>
185
          <groupId>org.apache.rat</groupId>
186
          <artifactId>apache-rat-plugin</artifactId>
187
          <configuration>
188
            <excludes combine.children="append">
189
              <exclude>src/main/resources/META-INF/MANIFEST.MF</exclude>
190
              <exclude>src/test/*-projects/**</exclude>
191
              <exclude>src/test/*-project/**</exclude>
192
              <exclude>src/test/plugin-version-references/**</exclude>
193
            </excludes>
194
          </configuration>
195
        </plugin>
196
      </plugins>
197
    </pluginManagement>
198
    <plugins>
199
      <plugin>
200
        <groupId>org.eclipse.sisu</groupId>
201
        <artifactId>sisu-maven-plugin</artifactId>
202
      </plugin>
203
      <plugin>
204
        <groupId>org.codehaus.modello</groupId>
205
        <artifactId>modello-maven-plugin</artifactId>
206
        <configuration>
207
          <version>1.0.0</version>
208
          <models>
209
            <model>src/main/mdo/core-extensions.mdo</model>
210
          </models>
211
        </configuration>
212
      </plugin>
213
    </plugins>
214
  </build>
215
</project>
216

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

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

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

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