-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpom.xml
49 lines (46 loc) · 1.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- This POM file is ONLY used to aggregate all licences of all (transitive) dependencies,
when cutting a release. Also see sbt action `generateLicences` for more the implementation.
We only use mvn since it supports this license aggregation. If at some point this becomes possible
from within the sbt infrastructure, we can drop this duplication, here. -->
<project>
<groupId>de.bstudios</groupId>
<artifactId>Effekt</artifactId>
<name>Effekt</name>
<version>0.10.0</version>
<modelVersion>4.0.0</modelVersion>
<dependencies>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>0.12.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>2.14.6</version>
</dependency>
<dependency>
<groupId>org.rogach</groupId>
<artifactId>scallop_3</artifactId>
<version>4.1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<outputDirectory>${project.basedir}/licenses</outputDirectory>
<licensesOutputDirectory>${project.basedir}/licenses</licensesOutputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>