-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
93 lines (82 loc) · 3.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- The project parent defines basic requirements for the add-on -->
<parent>
<groupId>in.virit.sb</groupId>
<artifactId>viritin-addon-project-parent</artifactId>
<version>0.0.5</version>
</parent>
<groupId>org.parttio</groupId>
<artifactId>velocity-component</artifactId>
<version>0.0.4-SNAPSHOT</version>
<name>VelocityComponent</name>
<description>A Helper Library to build JavaScript components for Vaadin using Velocity templating engine powered JS.</description>
<url>https://github.com/parttio/velocity-component</url>
<properties>
<!-- You can define the Vaadin version used during development as property if needed
default comes from the parent though.
-->
<vaadin.version>24.4.10</vaadin.version>
</properties>
<organization>
<name>Team Parttio</name>
</organization>
<developers>
<developer>
<name>Matti Tahvonen</name>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/parttio/velocity-component</url>
<connection>scm:git:git://github.com/parttio/velocity-component.git</connection>
<developerConnection>scm:git:ssh://[email protected]:/parttio/velocity-component.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/parttio/velocity-component/issues</url>
</issueManagement>
<dependencies>
<!-- In simple add-ons, dependency section can be empty as the parent provides essentials -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>2.3</version>
</dependency>
<!-- Copilot is currently excluded in the parent as it currently slows down the startup quite a bit,
but can be added back if needed for development:
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>copilot</artifactId>
<scope>test</scope>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<!-- Redefine the server, the parent publishes through the older OSS nexus -->
<serverId>s01</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
</configuration>
</plugin>
</plugins>
</build>
</project>