-
Notifications
You must be signed in to change notification settings - Fork 24
/
pom.xml
130 lines (121 loc) · 5.04 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<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>
<parent>
<groupId>org.basepom</groupId>
<artifactId>basepom-oss</artifactId>
<version>61</version>
</parent>
<groupId>net.e175.klaus</groupId>
<artifactId>solarpositioning</artifactId>
<version>2.0.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>solarpositioning</name>
<description>Algorithms for finding the sun's position on the sky, as well as sunrise and sunset times, for a
given date and coordinates (latitude/longitude).
</description>
<url>https://github.com/klausbrunner/solarpositioning</url>
<licenses>
<license>
<name>MIT</name>
<url>https://spdx.org/licenses/MIT.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Klaus Brunner</name>
<url>https://github.com/klausbrunner</url>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:klausbrunner/solarpositioning.git</connection>
<developerConnection>scm:git:[email protected]:klausbrunner/solarpositioning.git</developerConnection>
<url>https://github.com/klausbrunner/solarpositioning/tree/${project.scm.tag}</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.targetJdk>17</project.build.targetJdk>
<maven.compiler.release>17</maven.compiler.release>
<basepom.check.skip-license>true</basepom.check.skip-license>
<basepom.check.skip-checkstyle>true</basepom.check.skip-checkstyle>
<basepom.check.skip-dependency>true</basepom.check.skip-dependency>
<basepom.release.profiles>basepom.oss-release</basepom.release.profiles>
<scmCommentPrefix>build: [maven-release-plugin] [skip ci]</scmCommentPrefix>
<basepom.release.tag-name-format>v@{project.version}</basepom.release.tag-name-format>
<basepom.nexus-staging.staging-url>https://oss.sonatype.org/</basepom.nexus-staging.staging-url>
<basepom.nexus-staging.release-after-close>true</basepom.nexus-staging.release-after-close>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.25</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-SymbolicName>${project.artifactId}-osgi</Bundle-SymbolicName>
<Export-Package>net.e175.klaus.solarpositioning.*</Export-Package>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.9.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.26.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>