# 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": ```xml offline true true ``` ### select correct GPG certificate: ```xml ossrh true 1D0A66ED980F117DA5037470B83FAF4841FC4F70 ```