model
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nasdanika.models.java</groupId> <artifactId>model</artifactId> <version>2024.10.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.nasdanika.models.java</groupId> <version>2024.10.0</version> <artifactId>parent</artifactId> <relativePath>..</relativePath> </parent> <artifactId>model</artifactId> <packaging>jar</packaging> <name>Ecore Java Model</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>model</classifier> <includes> <include>model/**</include> </includes> <classesDirectory>${project.basedir}</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.eclipse.emf</groupId> <artifactId>org.eclipse.emf.ecore</artifactId> <version>2.37.0</version> </dependency> <dependency> <groupId>org.nasdanika.models.source</groupId> <artifactId>model</artifactId> <version>2024.10.0</version> </dependency> <dependency> <groupId>org.nasdanika.models.coverage</groupId> <artifactId>model</artifactId> <version>2024.10.0</version> </dependency> <dependency> <groupId>com.github.javaparser</groupId> <artifactId>javaparser-symbol-solver-core</artifactId> <version>3.26.2</version> </dependency> </dependencies> </project>