summaryrefslogtreecommitdiffstats
path: root/INFO.yaml
blob: b20e0d79a7494a2c043c9e9837352401cf6a6457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
project: 'usecase-ui'
project_creation_date: '2017-06-28'
project_category: ''
lifecycle_state: 'Incubation'
project_lead: &onap_releng_ptl
    name: 'Tao Shen'
    email: 'shentao@chinamobile.com'
    id: 'shentao999'
    company: 'CMCC'
    timezone: 'China/Beijing'
primary_contact: *onap_releng_ptl
issue_tracking:
    type: 'jira'
    url: 'https://jira.onap.org/projects/USECASEUI'
    key: 'UUI'
mailing_list:
    type: 'groups.io'
    url: 'lists.onap.org'
    tag: '<[sub-project_name]>'
realtime_discussion: ''
meetings:
    - type: 'zoom'
      agenda: 'https://wiki.onap.org/pages/viewpage.action?pageId=8228204'
      url: 'https://wiki.onap.org/display/DW/Usecase+UI+Project'
      server: 'n/a'
      channel: 'n/a'
      repeats: 'weekly'
      time: '02:00 UTC'
repositories:
    - 'usecase-ui'
committers:
    - <<: *onap_releng_ptl
    - name: 'Tao Shen'
      email: 'shentao@chinamobile.com'
      company: 'CMCC'
      id: 'shentao999'
      timezone: 'China/Beijing'
    - name: 'Amichai Hemli'
      email: 'ah0398@intl.att.com'
      company: 'ATT'
      id: 'ahemli'
      timezone: 'America/New_York'
    - name: 'Huabing Zhao'
      email: 'zhaohuabing@gmail.com'
      company: 'ZTE'
      id: 'Huabing_Zhao'
      timezone: 'China/Chengdu'
    - name: 'Xin Jin'
      email: 'saw.jin@huawei.com'
      company: 'Huawei'
      id: 'jinxin1983'
      timezone: 'China/Beijing'
    - name: 'Chuyi Guo'
      email: 'guochuyi@chinamobile.com'
      company: 'CMCC'
      id: 'guochuyicmri'
      timezone: 'China/Beijing'
    - name: 'Anbing Zhang'
      email: 'zhanganbing@chinamobile.com'
      company: 'CMCC'
      id: 'zhangab'
      timezone: 'China/Beijing'
tsc:
    approval: 'https://lists.onap.org/pipermail/onap-tsc'
lt;/exclusion> </exclusions> </dependency> <dependency> <groupId>org.onap.aaf.cadi</groupId> <artifactId>aaf-shiro-aafrealm-osgi-bundle</artifactId> <version>${aaf-shiro-bundle.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>maven-repo-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <finalName>stage/${application.name}-${project.version}</finalName> <descriptors> <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> </descriptors> <appendAssemblyId>true</appendAssemblyId> </configuration> </execution> <execution> <id>installer-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <finalName>${application.name}-${project.version}-installer</finalName> <descriptors> <descriptor>src/assembly/assemble_installer_zip.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <goals> <goal>copy-dependencies</goal> </goals> <phase>prepare-package</phase> <configuration> <transitive>false</transitive> <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <useRepositoryLayout>true</useRepositoryLayout> <addParentPoms>false</addParentPoms> <copyPom>false</copyPom> <scope>provided</scope> <!-- <includeGroupIds>org.onap.aaf,org.onap.ccsdk.features</includeGroupIds> --> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-version</id> <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/stage</outputDirectory> <resources> <resource> <directory>src/main/resources/scripts</directory> <includes> <include>install-feature.sh</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>