st-core-services
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-core-services</artifactId> <version>14.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>semanticturkey</artifactId> <version>14.0</version> </parent> <artifactId>st-core-services</artifactId> <name>Semantic Turkey CORE Services</name> <description>The set of core services bundled with the default Semantic Turkey XPI</description> <developers> <developer> <id>starred</id> <name>Armando Stellato</name> <email>stellato@info.uniroma2.it</email> <url>http://art.uniroma2.it/stellato</url> <organization>ART Group, University of Rome, Tor Vergata</organization> <organizationUrl>http://art.uniroma2.it</organizationUrl> </developer> <developer> <id>turbati</id> <name>Andrea Turbati</name> <email>turbati@info.uniroma2.it</email> <url>http://art.uniroma2.it/turbati</url> <organization>ART Group, University of Rome, Tor Vergata</organization> <organizationUrl>http://art.uniroma2.it</organizationUrl> </developer> </developers> <properties> <plugin-id>${project.groupId}.${project.artifactId}</plugin-id> <plugin-class>it.uniroma2.art.semanticturkey.services.core.STCoreServicesPlugin</plugin-class> <plugin-version>${project.version}</plugin-version> <plugin-dependencies></plugin-dependencies> <plugin-description></plugin-description> <plugin-provider></plugin-provider> <plugin-license></plugin-license> </properties> <repositories> <repository> <id>Shibbolet</id> <name>Shibbolet</name> <url>https://build.shibboleth.net/nexus/content/repositories/releases/</url> </repository> </repositories> <dependencies> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-i18n</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-core-framework</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-codegen-annotations</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-codegen-processor</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> </dependency> <dependency> <groupId>org.eclipse.rdf4j</groupId> <artifactId>rdf4j-rio-ntriples</artifactId> </dependency> <dependency> <groupId>org.eclipse.rdf4j</groupId> <artifactId>rdf4j-queryresultio-sparqljson</artifactId> </dependency> <dependency> <groupId>org.eclipse.rdf4j</groupId> <artifactId>rdf4j-queryrender</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-changetracking-sail</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-metadata-registry-bindings</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-regex-search-strategy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </dependency> <dependency> <groupId>com.samskivert</groupId> <artifactId>jmustache</artifactId> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </dependency> <dependency> <groupId>com.openhtmltopdf</groupId> <artifactId>openhtmltopdf-core</artifactId> </dependency> <dependency> <groupId>com.openhtmltopdf</groupId> <artifactId>openhtmltopdf-pdfbox</artifactId> </dependency> <dependency> <groupId>com.openhtmltopdf</groupId> <artifactId>openhtmltopdf-slf4j</artifactId> </dependency> <dependency> <groupId>it.uniroma2.art.semanticturkey</groupId> <artifactId>st-font</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <resources> <resource> <!-- we had problems in using standard wab deployment (referencing the WEB-INF/classes from depending wabs) --> <!-- thus we have manually managed the webapp directory and we still put the classes in the . position --> <directory>src/main/webapp</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>process-classes</phase> <configuration> <target> <manifest file="${project.build.outputDirectory}/META-INF/MANIFEST.MF"> <attribute name="Built-By" value="${user.name}"/> <attribute name="Plugin-Id" value="${plugin-id}"/> <attribute name="Plugin-Class" value="${plugin-class}"/> <attribute name="Plugin-Version" value="${plugin-version}"/> <attribute name="Plugin-Dependencies" value="${plugin-dependencies}"/> <attribute name="Plugin-Description" value="${plugin-description}"/> <attribute name="Plugin-Provider" value="${plugin-provider}"/> <attribute name="Plugin-License" value="${plugin-license}"/> </manifest> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <compilerArgs> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED</arg> <!-- The arguments above are needed to solve the exception (https://medium.com/nerd-for-tech/lomboks-access-to-the-internal-packages-of-jdk-compiler-is-incompatible-with-java-16-9e473ce011c): class org.apache.velocity.runtime.parser.node.PropertyExecutor cannot access class com.sun.tools.javac.code.Symbol$MethodSymbol (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.code to unnamed module @7f4852bf --> <arg>-Ait.uniroma2.art.semanticturkey.generation.controller.path.prefix=it.uniroma2.art.semanticturkey/st-core-services</arg> </compilerArgs> </configuration> </plugin> </plugins> </build> </project>