Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A780A200BCE for ; Fri, 2 Dec 2016 23:20:59 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A61CE160B2B; Fri, 2 Dec 2016 22:20:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CDD20160B08 for ; Fri, 2 Dec 2016 23:20:58 +0100 (CET) Received: (qmail 42305 invoked by uid 500); 2 Dec 2016 22:20:58 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 42295 invoked by uid 99); 2 Dec 2016 22:20:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2016 22:20:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F1BF9E04BB; Fri, 2 Dec 2016 22:20:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: carlosrovira@apache.org To: commits@flex.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/develop] - Fix pom.xml to build ListExample, and fill required licensed to build with maven Date: Fri, 2 Dec 2016 22:20:57 +0000 (UTC) archived-at: Fri, 02 Dec 2016 22:20:59 -0000 Repository: flex-asjs Updated Branches: refs/heads/develop 36152b2f8 -> 27856b4d3 Fix pom.xml to build ListExample, and fill required licensed to build with maven Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/27856b4d Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/27856b4d Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/27856b4d Branch: refs/heads/develop Commit: 27856b4d32aff1e6830da8957db9327e8a1e6d5b Parents: 36152b2 Author: Carlos Rovira Authored: Fri Dec 2 23:20:54 2016 +0100 Committer: Carlos Rovira Committed: Fri Dec 2 23:20:54 2016 +0100 ---------------------------------------------------------------------- examples/flexjs/ListExample/pom.xml | 43 +++++++++++++++++--- .../src/main/flex/simple/GenericList.as | 18 ++++++++ .../src/main/flex/simple/GenericListView.as | 18 ++++++++ 3 files changed, 74 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/27856b4d/examples/flexjs/ListExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/ListExample/pom.xml b/examples/flexjs/ListExample/pom.xml index b65b0f0..cf86a1a 100644 --- a/examples/flexjs/ListExample/pom.xml +++ b/examples/flexjs/ListExample/pom.xml @@ -32,11 +32,11 @@ 0.8.0-SNAPSHOT - DataGridExample + ListExample 0.8.0-SNAPSHOT swf - Apache Flex - FlexJS: Examples: FlexJS: DataGridExample + Apache Flex - FlexJS: Examples: FlexJS: ListExample @@ -45,7 +45,10 @@ flexjs-maven-plugin true - DataGridExample.mxml + ListExample.mxml + true + + @@ -60,13 +63,43 @@ + + + + + org.apache.flex.flexjs.framework + Network + 0.8.0-SNAPSHOT + swc + + + com.adobe.flash.framework playerglobal - ${flash.version} + 20.0 swc provided - + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/27856b4d/examples/flexjs/ListExample/src/main/flex/simple/GenericList.as ---------------------------------------------------------------------- diff --git a/examples/flexjs/ListExample/src/main/flex/simple/GenericList.as b/examples/flexjs/ListExample/src/main/flex/simple/GenericList.as index 3c16cae..c582b6f 100644 --- a/examples/flexjs/ListExample/src/main/flex/simple/GenericList.as +++ b/examples/flexjs/ListExample/src/main/flex/simple/GenericList.as @@ -1,3 +1,21 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// package simple { import org.apache.flex.core.IItemRenderer; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/27856b4d/examples/flexjs/ListExample/src/main/flex/simple/GenericListView.as ---------------------------------------------------------------------- diff --git a/examples/flexjs/ListExample/src/main/flex/simple/GenericListView.as b/examples/flexjs/ListExample/src/main/flex/simple/GenericListView.as index 9f13af4..d14a6f8 100644 --- a/examples/flexjs/ListExample/src/main/flex/simple/GenericListView.as +++ b/examples/flexjs/ListExample/src/main/flex/simple/GenericListView.as @@ -1,3 +1,21 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// package simple { import org.apache.flex.core.BeadViewBase;