|
8 | 8 | <url>https://github.com/clean-arch-enablers-project/cae-utils-http-client/blob/main/README.md</url> |
9 | 9 | <groupId>com.clean-arch-enablers</groupId> |
10 | 10 | <artifactId>http-client</artifactId> |
11 | | - <version>0.0.2</version> |
| 11 | + <version>1.1.1</version> |
12 | 12 | <packaging>jar</packaging> |
13 | 13 | <licenses> |
14 | 14 | <license> |
|
44 | 44 | <artifactId>jackson-databind</artifactId> |
45 | 45 | <version>2.16.1</version> |
46 | 46 | </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | + <artifactId>jackson-core</artifactId> |
| 50 | + <version>2.16.1</version> |
| 51 | + </dependency> |
47 | 52 | <dependency> |
48 | 53 | <groupId>org.junit.jupiter</groupId> |
49 | 54 | <artifactId>junit-jupiter-engine</artifactId> |
|
63 | 68 | <scope>test</scope> |
64 | 69 | </dependency> |
65 | 70 | </dependencies> |
66 | | - <build> |
67 | | - <plugins> |
68 | | - <plugin> |
69 | | - <groupId>org.sonatype.central</groupId> |
70 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
71 | | - <version>0.4.0</version> |
72 | | - <extensions>true</extensions> |
73 | | - <configuration> |
74 | | - <publishingServerId>central</publishingServerId> |
75 | | - <tokenAuth>true</tokenAuth> |
76 | | - </configuration> |
77 | | - </plugin> |
78 | | - <plugin> |
79 | | - <groupId>org.apache.maven.plugins</groupId> |
80 | | - <artifactId>maven-javadoc-plugin</artifactId> |
81 | | - <version>3.3.0</version> |
82 | | - <executions> |
83 | | - <execution> |
84 | | - <id>attach-javadocs</id> |
85 | | - <goals> |
86 | | - <goal>jar</goal> |
87 | | - </goals> |
88 | | - </execution> |
89 | | - </executions> |
90 | | - </plugin> |
91 | | - <plugin> |
92 | | - <groupId>org.apache.maven.plugins</groupId> |
93 | | - <artifactId>maven-source-plugin</artifactId> |
94 | | - <version>3.2.1</version> |
95 | | - <executions> |
96 | | - <execution> |
97 | | - <id>attach-sources</id> |
98 | | - <goals> |
99 | | - <goal>jar</goal> |
100 | | - </goals> |
101 | | - </execution> |
102 | | - </executions> |
103 | | - </plugin> |
104 | | - <plugin> |
105 | | - <groupId>org.apache.maven.plugins</groupId> |
106 | | - <artifactId>maven-gpg-plugin</artifactId> |
107 | | - <version>1.6</version> |
108 | | - <executions> |
109 | | - <execution> |
110 | | - <id>sign-artifacts</id> |
111 | | - <phase>deploy</phase> |
112 | | - <goals> |
113 | | - <goal>sign</goal> |
114 | | - </goals> |
115 | | - </execution> |
116 | | - </executions> |
117 | | - </plugin> |
118 | | - </plugins> |
119 | | - </build> |
| 71 | + |
| 72 | + <profiles> |
| 73 | + <profile> |
| 74 | + <id>deployment</id> |
| 75 | + <build> |
| 76 | + <plugins> |
| 77 | + <plugin> |
| 78 | + <groupId>org.sonatype.central</groupId> |
| 79 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 80 | + <version>0.4.0</version> |
| 81 | + <extensions>true</extensions> |
| 82 | + <configuration> |
| 83 | + <publishingServerId>central</publishingServerId> |
| 84 | + <tokenAuth>true</tokenAuth> |
| 85 | + </configuration> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 90 | + <version>3.3.0</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-javadocs</id> |
| 94 | + <goals> |
| 95 | + <goal>jar</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-source-plugin</artifactId> |
| 103 | + <version>3.2.1</version> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>attach-sources</id> |
| 107 | + <goals> |
| 108 | + <goal>jar</goal> |
| 109 | + </goals> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + </plugin> |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-gpg-plugin</artifactId> |
| 116 | + <version>1.6</version> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>sign-artifacts</id> |
| 120 | + <phase>verify</phase> |
| 121 | + <goals> |
| 122 | + <goal>sign</goal> |
| 123 | + </goals> |
| 124 | + </execution> |
| 125 | + </executions> |
| 126 | + </plugin> |
| 127 | + </plugins> |
| 128 | + </build> |
| 129 | + </profile> |
| 130 | + </profiles> |
| 131 | + |
120 | 132 | </project> |
0 commit comments