metaobjects-metadata
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects-metadata</artifactId>
<version>7.11.5</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects</artifactId>
<version>7.11.5</version>
</parent>
<artifactId>metaobjects-metadata</artifactId>
<packaging>jar</packaging>
<name>MetaObjects :: MetaData</name>
<url>https://github.com/metaobjectsdev/metaobjects</url>
<description>MetaObjects for Model-driven development - MetaData Libraries</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- FR-033: bundle the repo-root spec/metamodel/*.json (the 16 shared
provider-definition files; byte-identical cross-port by design) into
the metadata jar at spec/metamodel/, so the SpecMetamodelReader can
read them off the classpath at registration time (AOT-safe, ADR-0001
— embed, never runtime-scan an arbitrary filesystem path). The
byte-identity gate (SpecMetamodelEmbedTest) asserts the embedded copy
equals the repo-root source. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>bundle-spec-metamodel</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/spec/metamodel</outputDirectory>
<resources>
<resource>
<directory>${maven.multiModuleProjectDirectory}/../../spec/metamodel</directory>
<includes>
<include>*.json</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>${commons.validator.version}</version>
<type>jar</type>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Secure replacement for excluded commons-collections 3.2.2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.5.0-M2</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.2</version>
</dependency>
<!-- SnakeYAML: YAML authoring front-end (ADR-0006). Version managed in parent. -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>${xml.apis.version}</version>
<type>jar</type>
</dependency>
<!-- SLF4J logging dependency - required for MetaField logger -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xerces.version}</version>
<type>jar</type>
</dependency>
</dependencies>
</project>