Examples of programmingLanguages()


Examples of org.apache.maven.dotnet.assembler.AssemblyInfoMarshallerAnnotation.programmingLanguages()

                    className = c.getName();
                    AssemblyInfoMarshallerAnnotation annotation =
                        (AssemblyInfoMarshallerAnnotation) c.getAnnotation( AssemblyInfoMarshallerAnnotation.class );
                    if ( annotation != null )
                    {
                        for ( ProgrammingLanguage programmingLanguage : annotation.programmingLanguages() )
                        {
                            AssemblyInfoMarshaller marshaller = (AssemblyInfoMarshaller) c.newInstance();
                            marshaller.init( programmingLanguage, new File( mavenProject.getBuild().getDirectory(),
                                                                            BuildDirectories.BUILD_SOURCES_GENERATED.getBuildDirectoryName() ) );
                            marshallers.add( marshaller );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.