java / library / assira

Ranides Atterwim 1e4f3748c0 #39 text is supported and tested 4 年之前
assira.asm b14be75450 update version/deployment 4 年之前
assira.benchmark e13c3b35a6 #33 name, description, developers, licenses, scm, distributionManagement 4 年之前
assira.core 1e4f3748c0 #39 text is supported and tested 4 年之前
assira.core11 b14be75450 update version/deployment 4 年之前
assira.core8 b14be75450 update version/deployment 4 年之前
assira.debugger 449fcc9dc1 remove: ClassUtils: loader functions 4 年之前
assira.drafts e13c3b35a6 #33 name, description, developers, licenses, scm, distributionManagement 4 年之前
assira.enterprise b14be75450 update version/deployment 4 年之前
assira.jdk11 dbdcb38226 new: PrintRules#skip 4 年之前
assira.jdk8 a446b29df3 rename: Bitmask into MaskFactory 4 年之前
assira.junit 449fcc9dc1 remove: ClassUtils: loader functions 4 年之前
assira.lambda b14be75450 update version/deployment 4 年之前
assira.test b14be75450 update version/deployment 4 年之前
doc 769c9ff132 change: adapter can wrap returns & arguments 6 年之前
rules a446b29df3 rename: Bitmask into MaskFactory 4 年之前
scripts 2dcb533863 resolve #32 4 年之前
.gitignore 29ed710fdc repackage 5 年之前
COPYING e13c3b35a6 #33 name, description, developers, licenses, scm, distributionManagement 4 年之前
README.md b14be75450 update version/deployment 4 年之前
pom.xml 6952216933 add: #sneaky wrapper for checked functions 4 年之前

README.md

assira library

local build

mvn -P common,jdk8 clean install
mvn -P common,jdk11 clean install

deployment to maven central

JDK 8
mvn clean deploy -P release,asm,common,jdk8

JDK 11
mvn clean deploy -P release,jdk11

profiles

  • asm: modules
  • common: modules
  • jdk8: modules
  • jdk11: modules
  • release: settings for deployment
  • offline: disable tests which require internet connection

activate profile "offline":

<profiles>
    <profile>
        <id>offline</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
            <net.ranides.offline>true</net.ranides.offline>
        </properties>
    </profile>
</profiles>

select correct GPG certificate:

<profiles>
    <profile>
        <id>ossrh</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
            <gpg.keyname>1D0A66ED980F117DA5037470B83FAF4841FC4F70</gpg.keyname>
        </properties>
    </profile>
</profiles>