-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample-project-pom.xml
More file actions
47 lines (40 loc) · 1.99 KB
/
Copy pathexample-project-pom.xml
File metadata and controls
47 lines (40 loc) · 1.99 KB
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
<?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>
<artifactId><!-- your project's artifact ID --></artifactId>
<version><!-- your project's version number --></version>
<name><!-- your project's name --></name>
<description><!-- your project's description --></description>
<url>https://github.com/clojure/<!-- your project's github name --></url>
<developers>
<developer>
<name><!-- your name --></name>
<email><!-- your email address --></email>
<url><!-- optional, your website URL --></url>
<timezone><!-- your time zone, like -5 for Eastern Standard Time --></timezone>
</developer>
</developers>
<parent>
<groupId>org.clojure</groupId>
<artifactId>pom.contrib</artifactId>
<version><!-- latest version of this pom --></version>
</parent>
<scm>
<connection>scm:git:git@github.com:clojure/<!-- your project's github name -->.git</connection>
<developerConnection>scm:git:git@github.com:clojure/<!-- your project's github name -->.git</developerConnection>
<url>git@github.com:clojure/<!-- your project's github name -->.git</url>
</scm>
<!-- Properties:
<project.build.outputTimestamp> - set this to any value initially,
the maven-release-plugin will update during each release.
<clojure.version> - optionally set a default version of
Clojure to build with. The parent pom.contrib will set a baseline.
<clojure.warnOnReflection> - optionally set *warn-on-reflection* during
builds. Defaults to false, set to true here if you want.
-->
<properties>
<clojure.version>1.11.4</clojure.version>
<clojure.warnOnReflection>true</clojure.warnOnReflection>
<project.build.outputTimestamp>2026-07-02T13:45:50Z</project.build.outputTimestamp>
</properties>
</project>