|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | + <description>Globs library used to instantiate a globs from a command line argument or env variables</description> |
| 5 | + <url>https://globsframework.org</url> |
4 | 6 | <groupId>org.globsframework</groupId> |
5 | 7 | <packaging>jar</packaging> |
6 | 8 | <artifactId>globs-commandline</artifactId> |
7 | 9 | <name>Generic Lightweight ObjectS command line</name> |
8 | | - <version>4.1.0</version> |
| 10 | + <version>4.1.1</version> |
| 11 | + |
| 12 | + <developers> |
| 13 | + <developer> |
| 14 | + <name>Marc Guiot</name> |
| 15 | + <email>marc.guiot@free.fr</email> |
| 16 | + </developer> |
| 17 | + </developers> |
| 18 | + |
| 19 | + <licenses> |
| 20 | + <license> |
| 21 | + <name>Apache License</name> |
| 22 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 23 | + </license> |
| 24 | + </licenses> |
| 25 | + |
| 26 | + <properties> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + </properties> |
9 | 29 |
|
10 | 30 | <repositories> |
11 | 31 | <repository> |
|
14 | 34 | </repository> |
15 | 35 | </repositories> |
16 | 36 |
|
| 37 | + <scm> |
| 38 | + <url>https://github.com/globsframework/globs-commandline</url> |
| 39 | + </scm> |
| 40 | + |
| 41 | + <profiles> |
| 42 | + <profile> |
| 43 | + <id>release</id> |
| 44 | + <build> |
| 45 | + <plugins> |
| 46 | + <plugin> |
| 47 | + <groupId>org.sonatype.central</groupId> |
| 48 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 49 | + <version>0.7.0</version> |
| 50 | + <extensions>true</extensions> |
| 51 | + <configuration> |
| 52 | + <publishingServerId>central</publishingServerId> |
| 53 | + </configuration> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-source-plugin</artifactId> |
| 58 | + <version>2.2.1</version> |
| 59 | + <executions> |
| 60 | + <execution> |
| 61 | + <id>attach-sources</id> |
| 62 | + <goals> |
| 63 | + <goal>jar-no-fork</goal> |
| 64 | + </goals> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 71 | + <version>2.9.1</version> |
| 72 | + <executions> |
| 73 | + <execution> |
| 74 | + <id>attach-javadocs</id> |
| 75 | + <goals> |
| 76 | + <goal>jar</goal> |
| 77 | + </goals> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + </plugin> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-gpg-plugin</artifactId> |
| 84 | + <version>1.5</version> |
| 85 | + <executions> |
| 86 | + <execution> |
| 87 | + <id>sign-artifacts</id> |
| 88 | + <phase>verify</phase> |
| 89 | + <goals> |
| 90 | + <goal>sign</goal> |
| 91 | + </goals> |
| 92 | + <configuration> |
| 93 | + <gpgArguments> |
| 94 | + <arg>--pinentry-mode</arg> |
| 95 | + <arg>loopback</arg> |
| 96 | + </gpgArguments> |
| 97 | + </configuration> |
| 98 | + </execution> |
| 99 | + </executions> |
| 100 | + </plugin> |
| 101 | + </plugins> |
| 102 | + </build> |
| 103 | + </profile> |
| 104 | + </profiles> |
| 105 | + |
17 | 106 | <distributionManagement> |
18 | 107 | <repository> |
19 | 108 | <id>github-globsframework</id> |
|
27 | 116 | <plugin> |
28 | 117 | <groupId>org.apache.maven.plugins</groupId> |
29 | 118 | <artifactId>maven-compiler-plugin</artifactId> |
30 | | - <version>3.8.1</version> |
| 119 | + <version>3.11.0</version> |
31 | 120 | <configuration> |
32 | 121 | <source>17</source> |
33 | 122 | <target>17</target> |
34 | 123 | </configuration> |
35 | 124 | </plugin> |
36 | | - <plugin> |
37 | | - <groupId>org.apache.maven.plugins</groupId> |
38 | | - <artifactId>maven-source-plugin</artifactId> |
39 | | - <version>3.2.1</version> |
40 | | - <executions> |
41 | | - <execution> |
42 | | - <id>attach-sources</id> |
43 | | - <goals> |
44 | | - <goal>jar</goal> |
45 | | - </goals> |
46 | | - </execution> |
47 | | - </executions> |
48 | | - </plugin> |
49 | 125 | </plugins> |
50 | 126 | </build> |
51 | 127 |
|
52 | 128 | <dependencies> |
53 | 129 | <dependency> |
54 | 130 | <groupId>org.globsframework</groupId> |
55 | 131 | <artifactId>globs</artifactId> |
56 | | - <version>4.1.0</version> |
| 132 | + <version>4.1.1</version> |
57 | 133 | </dependency> |
58 | 134 | <!-- <dependency>--> |
59 | 135 | <!-- <groupId>org.globsframework</groupId>--> |
|
0 commit comments