|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 6 | <modelVersion>4.0.0</modelVersion> |
5 | 7 | <groupId>com.github.jonpereiradev</groupId> |
6 | 8 | <artifactId>diff-objects</artifactId> |
7 | | - <version>1.2.0-SNAPSHOT</version> |
| 9 | + <version>1.2.0</version> |
8 | 10 | <packaging>jar</packaging> |
9 | 11 | <name>${project.groupId}:${project.artifactId}</name> |
10 | 12 | <description>Project to help build functionality that needs to show the differences between two objects</description> |
|
34 | 36 | </properties> |
35 | 37 | <dependencies> |
36 | 38 | <dependency> |
37 | | - <groupId>commons-lang</groupId> |
38 | | - <artifactId>commons-lang</artifactId> |
39 | | - <version>2.6</version> |
| 39 | + <groupId>org.apache.commons</groupId> |
| 40 | + <artifactId>commons-lang3</artifactId> |
| 41 | + <version>3.11</version> |
40 | 42 | </dependency> |
41 | 43 | <dependency> |
42 | 44 | <groupId>junit</groupId> |
|
49 | 51 | <plugins> |
50 | 52 | <plugin> |
51 | 53 | <groupId>org.apache.maven.plugins</groupId> |
52 | | - <artifactId>maven-source-plugin</artifactId> |
53 | | - <version>3.0.1</version> |
54 | | - <executions> |
55 | | - <execution> |
56 | | - <id>attach-sources</id> |
57 | | - <goals> |
58 | | - <goal>jar-no-fork</goal> |
59 | | - </goals> |
60 | | - </execution> |
61 | | - </executions> |
62 | | - </plugin> |
63 | | - <plugin> |
64 | | - <groupId>org.apache.maven.plugins</groupId> |
65 | | - <artifactId>maven-javadoc-plugin</artifactId> |
66 | | - <version>3.0.1</version> |
67 | | - <executions> |
68 | | - <execution> |
69 | | - <id>attach-javadocs</id> |
70 | | - <goals> |
71 | | - <goal>jar</goal> |
72 | | - </goals> |
73 | | - </execution> |
74 | | - </executions> |
| 54 | + <artifactId>maven-compiler-plugin</artifactId> |
| 55 | + <version>3.8.1</version> |
75 | 56 | </plugin> |
76 | 57 | <plugin> |
77 | | - <groupId>org.apache.maven.plugins</groupId> |
78 | | - <artifactId>maven-compiler-plugin</artifactId> |
| 58 | + <groupId>external.atlassian.jgitflow</groupId> |
| 59 | + <artifactId>jgitflow-maven-plugin</artifactId> |
| 60 | + <version>1.0-m5.1</version> |
79 | 61 | <configuration> |
80 | | - <source>8</source> |
81 | | - <target>8</target> |
| 62 | + <pushFeatures>true</pushFeatures> |
| 63 | + <pushReleases>true</pushReleases> |
| 64 | + <pushHotfixes>true</pushHotfixes> |
| 65 | + <allowSnapshots>true</allowSnapshots> |
| 66 | + <allowUntracked>true</allowUntracked> |
| 67 | + <flowInitContext> |
| 68 | + <masterBranchName>master</masterBranchName> |
| 69 | + <developBranchName>develop</developBranchName> |
| 70 | + <featureBranchPrefix>feature/</featureBranchPrefix> |
| 71 | + <releaseBranchPrefix>release/</releaseBranchPrefix> |
| 72 | + <hotfixBranchPrefix>hotfix/</hotfixBranchPrefix> |
| 73 | + </flowInitContext> |
82 | 74 | </configuration> |
83 | 75 | </plugin> |
84 | 76 | </plugins> |
| 77 | + <resources> |
| 78 | + <resource> |
| 79 | + <directory>src/main/resources</directory> |
| 80 | + <filtering>true</filtering> |
| 81 | + </resource> |
| 82 | + </resources> |
85 | 83 | </build> |
86 | 84 | <profiles> |
87 | 85 | <profile> |
|
98 | 96 | </distributionManagement> |
99 | 97 | <build> |
100 | 98 | <plugins> |
| 99 | + <plugin> |
| 100 | + <groupId>org.sonatype.plugins</groupId> |
| 101 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 102 | + <version>1.6.8</version> |
| 103 | + <extensions>true</extensions> |
| 104 | + <configuration> |
| 105 | + <serverId>ossrh</serverId> |
| 106 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 107 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 108 | + </configuration> |
| 109 | + </plugin> |
101 | 110 | <plugin> |
102 | 111 | <groupId>org.apache.maven.plugins</groupId> |
103 | 112 | <artifactId>maven-gpg-plugin</artifactId> |
104 | | - <version>1.5</version> |
| 113 | + <version>1.6</version> |
105 | 114 | <executions> |
106 | 115 | <execution> |
107 | 116 | <id>sign-artifacts</id> |
108 | 117 | <phase>verify</phase> |
109 | 118 | <goals> |
110 | 119 | <goal>sign</goal> |
111 | 120 | </goals> |
| 121 | + <configuration> |
| 122 | + <gpgArguments> |
| 123 | + <arg>--pinentry-mode</arg> |
| 124 | + <arg>loopback</arg> |
| 125 | + </gpgArguments> |
| 126 | + </configuration> |
112 | 127 | </execution> |
113 | 128 | </executions> |
114 | 129 | </plugin> |
115 | 130 | <plugin> |
116 | | - <groupId>org.sonatype.plugins</groupId> |
117 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
118 | | - <version>1.6.7</version> |
119 | | - <extensions>true</extensions> |
120 | | - <configuration> |
121 | | - <serverId>ossrh</serverId> |
122 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
123 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
124 | | - </configuration> |
| 131 | + <groupId>org.apache.maven.plugins</groupId> |
| 132 | + <artifactId>maven-source-plugin</artifactId> |
| 133 | + <version>3.2.1</version> |
| 134 | + <executions> |
| 135 | + <execution> |
| 136 | + <id>attach-sources</id> |
| 137 | + <goals> |
| 138 | + <goal>jar-no-fork</goal> |
| 139 | + </goals> |
| 140 | + </execution> |
| 141 | + </executions> |
| 142 | + </plugin> |
| 143 | + <plugin> |
| 144 | + <groupId>org.apache.maven.plugins</groupId> |
| 145 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 146 | + <version>3.2.0</version> |
| 147 | + <executions> |
| 148 | + <execution> |
| 149 | + <id>attach-javadocs</id> |
| 150 | + <goals> |
| 151 | + <goal>jar</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
125 | 155 | </plugin> |
126 | 156 | </plugins> |
127 | 157 | </build> |
|
0 commit comments