|
7 | 7 | <groupId>com.scalableminds</groupId> |
8 | 8 | <artifactId>blosc-java</artifactId> |
9 | 9 | <version>0.1-1.21.4-SNAPSHOT</version> |
| 10 | + <inceptionYear>2023</inceptionYear> |
10 | 11 |
|
11 | 12 | <name>blosc-java</name> |
12 | 13 | <description>A Java library for the Blosc codec that wraps around the c-blosc library with JNI. |
|
42 | 43 | <artifactId>pomchecker-maven-plugin</artifactId> |
43 | 44 | <version>1.9.0</version> |
44 | 45 | </plugin> |
45 | | - <plugin> |
46 | | - <groupId>org.apache.maven.plugins</groupId> |
47 | | - <artifactId>maven-javadoc-plugin</artifactId> |
48 | | - <version>3.5.0</version> |
49 | | - <executions> |
50 | | - <execution> |
51 | | - <id>attach-javadoc</id> |
52 | | - <goals> |
53 | | - <goal>jar</goal> |
54 | | - </goals> |
55 | | - </execution> |
56 | | - </executions> |
57 | | - </plugin> |
58 | | - <plugin> |
59 | | - <groupId>org.apache.maven.plugins</groupId> |
60 | | - <artifactId>maven-source-plugin</artifactId> |
61 | | - <version>3.3.0</version> |
62 | | - <executions> |
63 | | - <execution> |
64 | | - <id>attach-source</id> |
65 | | - <goals> |
66 | | - <goal>jar</goal> |
67 | | - </goals> |
68 | | - </execution> |
69 | | - </executions> |
70 | | - </plugin> |
71 | | - <plugin> |
72 | | - <groupId>org.jreleaser</groupId> |
73 | | - <artifactId>jreleaser-maven-plugin</artifactId> |
74 | | - <version>1.7.0</version> |
75 | | - <configuration> |
76 | | - <jreleaser> |
77 | | - <signing> |
78 | | - <active>ALWAYS</active> |
79 | | - <armored>true</armored> |
80 | | - </signing> |
81 | | - <deploy> |
82 | | - <maven> |
83 | | - <nexus2> |
84 | | - <maven-central> |
85 | | - <active>ALWAYS</active> |
86 | | - <url>https://s01.oss.sonatype.org/service/local</url>; |
87 | | - <closeRepository>false</closeRepository> |
88 | | - <releaseRepository>false</releaseRepository> |
89 | | - <stagingRepositories>target/staging-deploy</stagingRepositories> |
90 | | - </maven-central> |
91 | | - </nexus2> |
92 | | - </maven> |
93 | | - </deploy> |
94 | | - </jreleaser> |
95 | | - </configuration> |
96 | | - </plugin> |
97 | 46 | </plugins> |
98 | 47 | </build> |
| 48 | + |
| 49 | + <profiles> |
| 50 | + <profile> |
| 51 | + <id>release</id> |
| 52 | + <build> |
| 53 | + <plugins> |
| 54 | + <plugin> |
| 55 | + <groupId>org.apache.maven.plugins</groupId> |
| 56 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 57 | + <version>3.5.0</version> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <id>attach-javadoc</id> |
| 61 | + <goals> |
| 62 | + <goal>jar</goal> |
| 63 | + </goals> |
| 64 | + </execution> |
| 65 | + </executions> |
| 66 | + </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-source-plugin</artifactId> |
| 70 | + <version>3.3.0</version> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>attach-source</id> |
| 74 | + <goals> |
| 75 | + <goal>jar</goal> |
| 76 | + </goals> |
| 77 | + </execution> |
| 78 | + </executions> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.jreleaser</groupId> |
| 82 | + <artifactId>jreleaser-maven-plugin</artifactId> |
| 83 | + <version>1.7.0</version> |
| 84 | + <configuration> |
| 85 | + <jreleaser> |
| 86 | + <signing> |
| 87 | + <active>ALWAYS</active> |
| 88 | + <armored>true</armored> |
| 89 | + </signing> |
| 90 | + <deploy> |
| 91 | + <maven> |
| 92 | + <nexus2> |
| 93 | + <maven-central> |
| 94 | + <active>ALWAYS</active> |
| 95 | + <url>https://oss.sonatype.org/service/local</url> |
| 96 | + <snapshotUrl>https://oss.sonatype.org/content/repositories/snapshots/ |
| 97 | + </snapshotUrl> |
| 98 | + <closeRepository>false</closeRepository> |
| 99 | + <releaseRepository>false</releaseRepository> |
| 100 | + <stagingRepositories>target/staging-deploy</stagingRepositories> |
| 101 | + </maven-central> |
| 102 | + </nexus2> |
| 103 | + </maven> |
| 104 | + </deploy> |
| 105 | + </jreleaser> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + </plugins> |
| 109 | + </build> |
| 110 | + </profile> |
| 111 | + </profiles> |
99 | 112 |
|
100 | 113 | <developers> |
101 | 114 | <developer> |
|
0 commit comments