@jnxplus/nx-maven
Version:
[](https://badge.fury.io/js/@jnxplus%2Fnx-maven)
19 lines (17 loc) • 450 B
TypeScript
import { FrameworkType, LanguageType } from '@jnxplus/common';
export interface NxMavenLibGeneratorSchema {
name: string;
tags?: string;
directory?: string;
simpleName?: boolean;
simplePackageName?: boolean;
language: LanguageType;
groupId: string;
projectVersion: string;
parentProject: string;
aggregatorProject?: string;
projects?: string;
skipStarterCode?: boolean;
framework?: FrameworkType;
skipFormat?: boolean;
}