The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

using rake to run nested rspec modules

I have a project with the following structure root ---- module1 ---- ---- spec ---- module2 ---- ---- spec ---- moduleN ---- ---- spec the sub-modules names are dynamic, new ...
0
votes
2answers
68 views

How to execute a Gradle task once at the end of subproject tasks

I am working with the following project structure Project |-Subproject1 |-Subproject2 |build.gradle |settings.gradle The submodules are included in the settings.gradle and configured in the ...
0
votes
1answer
31 views

Custom Parcelables over AIDL shared between Multiple APPs results in ClassNotDefError

I have three Android Projects in Eclipse: App A (hosts a Service) App B (uses Service from A) AIDL (definition and some custom parcelables) APP A launches APP B. APP B uses an Service via AIDL ...
1
vote
1answer
26 views

Acceleo maven generation multi artifact/project

I am trying to construct a maven acceleo generator. The generator consists of multiple acceleo projects (artifacts in maven), with inter-dependencies. I am running into a problem with the ...
1
vote
1answer
61 views

Gradle: Call root-task with recursive execution from subprojects

If i have a gradle multi-project like this RootProject +-- SubProjectA +-- SubProjectB and every project has a task 'foo', i can call it on the root project RootProject>gradle foo and it also ...
0
votes
1answer
61 views

osgi projects with several poms in intellij idea

I have two maven projects with 2 poms (type). Some components from project 1 are depending on projects 2. Almost all components (maven) are osgi components. The question is: since IntelliJ IDEA does ...
0
votes
1answer
211 views

Gradle multiproject gives “Could not find property 'sourceSets' on project” error

I had quite good gradle configuration, that builded everything just fine. But one of the projects of my multi-project build derrivated from the rest of them so much, that I would gladly move it to ...
2
votes
1answer
237 views

Multi Project Solution template

I am in the process of creating multi-project solution template having web application,Desktop,few class libraries and unit test project. I built the basic container and packed it as VSIX container. ...
0
votes
0answers
25 views

A way to bypass ant property override behaviour

Calling 'ant' task will override the properties of the invoked build project. As the documentation says: By default, all of the properties of the current project will be available in the new ...
1
vote
1answer
69 views

Ant optional classpath element

I have some modules and a main runnable project. I have common build file, and build.common.xml <target name="build" > <path id="libraries.classpath"> <fileset dir="${lib.dir}" ...
0
votes
1answer
372 views

Android runtime exception - Could not find class XXX referenced from method XXX.<init>

I have a few android projects that i'm trying to put together, but i'm facing some runtime exceptions that i can't understand. The projects are built like this: C/C++ Project ProjCore (has .c and ...
0
votes
1answer
54 views

Moving common code into `subprojects {}` block breaks build

I have a multi-project (multiple java subprojects) in Grade and I plan to upload it to a maven repository (currently a local one) including the sources and javadoc artifacts. I simply add the ...
2
votes
3answers
270 views

sbt using different Scala versions in a multi project build

I have a multi project which uses two versions of Scala. The Build.scala looks like this: import sbt._ import Keys._ object Build extends sbt.Build { lazy val root: Project = Project( id = ...
0
votes
2answers
115 views

Gradle multiproject naming

I started using Gradle for multiprojects. However, the Gradle manual does not give many hints for the best practice regarding the naming of subprojects. I have the multiproject with the name ...
2
votes
1answer
176 views

Build multiproject Gradle on Jenkins

I have a Gradle multiproject hosted in Mercurial repo. I would like to setup my Jenkins in such a way, that if I commit changes into only 1 subproject, then only that subproject will be built and ...
2
votes
2answers
96 views

Best way to maintain multiple related projects in one git repository?

As part of a personal project, I've started to use git instead of subversion, maybe I'm learning something new from that. Setting up the repository was fairly easy, configuring my web server to serve ...
1
vote
1answer
697 views

Gradle nested multi-projects with project compile dependencies

I have an identical problem to this Gradle Multi-Module Project Setup but I have to use project compile dependencies to build and cannot use the library(jar) dependencies solution that was given as a ...
0
votes
1answer
631 views

GWT. Maven. GWT Module <module_name> not found in project sources or resources

I have a maven multi-module project. One of this modules (compiled as .jar) contains only domain objects, which will be used at client and server sides (I add this .jar as dependency to other my ...
0
votes
0answers
67 views

Winforms designer - custom controls disabled from referenced project

(using vb 2010) I have a multi-project solution, where ProjectB has a reference to ProjectA. ProjectA has several custom and user controls that I'd like to use in ProjectB. However, when I open up ...
5
votes
2answers
376 views

SBT/Play2 multi-project setup does not include dependant projects in classpath in run/test

I have following SBT/Play2 multi-project setup: import sbt._ import Keys._ import PlayProject._ object ApplicationBuild extends Build { val appName = "traveltime-api" val appVersion ...
0
votes
1answer
27 views

How do you prefer to split your multi-part program? [closed]

Having a program that has several distinct parts is usual.By part I mean a graphical part that has its own windows and functionalities.(About non graphical part, I think creating a library is the ...
0
votes
2answers
131 views

Gradle multiproject, change defaut build filename (build.gradle)

We have a multiproject with a settings.gradle and no build.gradle in the root project. The default behaviour of gradle is just look up the settings.gradle file on the top dir and read the ...
4
votes
2answers
621 views

Multiple settings gradle files for multiple projects building

I have the following project structure -->Starnderd Location -->Project1 -->settings.gradle -->build.gradle -->Subproject11 ...
2
votes
0answers
158 views

sbt multi-project war packaging

I've been trying to find the way to package a web application composed by multiple projects into a single war. The only usefull plugin I've found for sbt is xsbt-web-plugin. I'm trying to use the War ...
2
votes
5answers
356 views

Better to reference a DLL or have multi-project solutions?

I'm still learning .NET (specifically C#), and I'm curious as the advantages of creating and referencing a dll versus having a multi-project solution? I have the opportunity to do either one, but I'm ...
0
votes
1answer
44 views

Maven2 can't resolve sub-dependencies

We're using Maven2 in a multiproject environment. Actually I'm dealing with the dependency-scope. In the target solution I want to submit all dependeniecs to the vm by setting the classpath. ...
0
votes
0answers
324 views

Multiproject GWT with Maven

Im trying to do a multiproject with GWT using this example: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/multiproject.html So, I have 3 project: reactor, transferencias and WebCore reactor ...
0
votes
1answer
96 views

Exporting content to the output folder of a multi-project solution in VS2010

I have a solution in visual studios. 2 of the projects it contains are test projects. 2 are actual software to be deployed. 1 of these projects is stand alone the other, lets call this project B. The ...
0
votes
1answer
109 views

android multiple project

I'm working on a fairly large sized android project, with multiple apps & libs, each with their own dependencies etc. The team working on this project is starting to grow, and it seems that the ...
2
votes
5answers
133 views

Share entities between multi-projects

I have 3 Java projects with the same entities. I want to share entities between these projects because entities can evolve during the development phase. We are thinking about building a jar with ...
0
votes
1answer
37 views

Share Point 2007 Dll Error

I m Trying To Deploy a Solution With 3 Project (Multi Project Solution ) on our sharepoint Server . dll of One Of This Solution In Which I have Put My Enums , Struct and Common Stuff get into ...
0
votes
1answer
334 views

Conditionally exclude project creation in a multi-project Visual Studio project template

I have a multi-project Visual Studio project template. I want to be able to, conditionally, exclude specific projects from the created solution. I've looked into the ProjectFinishedGenerating method ...
0
votes
1answer
611 views

Requestfactory Validation on Multi-Project Setup

I tried changing to the release version of gwt2.4 and run into a problem. I use multiple projects in my setup. I have a project with serverside code, one project with shared code, that can be used in ...
2
votes
0answers
238 views

Multiple Projects in an MVC application

I am working on an MVC3 application at the moment. I also have a requirement to create custom membership providers for this appl. What I was hoping to do was create a separate MVC3 solution/project ...
5
votes
1answer
2k views

Gradle: How to configure multiproject setup with side-by-side projects

We have an old project that is set up like this: . ├── customizationProject │   ├── ejb │   └── services ├── projectA │   ├── ejb │   └── shared ├── projectB │   └── ejb └── projectC ├── ejb ...
0
votes
1answer
161 views

How I can handle a multi-projects support in Idea in GIT support context?

I have several projects which are under git repositories. All projects have its own GIT-url in the repository. I try to import them to IntelliJ-idea: it works/resolves more or less well but there is ...
0
votes
2answers
123 views

Calling function from a class in project 1 from project 2

I have a c# solution. For the solution i have 2 projects setup. One is a web application and one is a class library. I created a class in the class library that has a static method that i want to ...
3
votes
3answers
775 views

How to correctly setup a C language project in Eclipse

I'm an experienced Java developer, and I'm very familiar with Eclipse. Lately I've been trying to migrate a Texas Instrumental(BLE), IAR C language project, into Eclipse, without using IAR official ...
0
votes
0answers
109 views

HGE - Access violation when calling hgeSprite.Render

I have a problem when trying to run my game that uses the Haaf's Game engine, this exception is thrown: Unhandled exception at 0x72daad10 (TakaGUI.dll) in Game.exe: 0xC0000005: Access violation ...
0
votes
1answer
198 views

Gradle - when is a plug-in preferable over a script?

I'm using gradle to manage a multi-project J2EE build - the end-goal is to produces a series of server package/artifacts that can be deployed to a target server, unzipped, and run. In other words, ...
1
vote
1answer
358 views

Ivy resolve multi module apache maven POM.xml

If i have multi module project written in maven pom.xml in this architechture pom.xml -main ---module1/pom.xml ---module2/pom.xml and main pom.xml looks like this ...
1
vote
1answer
334 views

xdebug across projects in netbeans

Here is the situation.. I have some classes that are in one project... My main code is in another project... and i split this up because i am using GIT as my SCM... So when i debug my main code... i ...
1
vote
2answers
1k views

Solution/MultiProject Template in VS2010

Looking to make a Solution/Multiproject Template. While I'm aware a solution template does not exist, I've been researching/trying with some of success. (Link from here ...
15
votes
2answers
3k views

Multi-project test dependencies with gradle

I have a multi-project configuration and I want to use gradle. My projects are like this Project A -> src/main/java -> src/test/java Project B -> src/main/java (depends on src/main/java on ...
0
votes
1answer
299 views

Multi-project solution & cross-application data handling

Time for another "what am I overlooking" question! Thanks in advance for your guidance, and as ever, you guys rock! :) .NET 2010 Winforms, but I only have the Express version. I have 05 Pro, but ...
2
votes
2answers
244 views

How to apply fomatter and template settings to multiple projects in Eclipse?

I have various interrelated projects in my Eclipse Helios workspace. Some projects use the Java standard coding style with no license header. Some others use similar coding style with 3-space ...
1
vote
2answers
314 views

C# solution referencing a pre-built .exe

I have a project which is the core of our application. We build several DLLs and an EXE. We then have custom projects which use pre-built core DLLs and EXE and add customisations/extra bits as ...
2
votes
1answer
822 views

Overriding an Ivy dependencies' revision

I use Apache Ivy for handling library dependency. In my company we have a "core" project which is released/versioned periodically. We then have many "customer" projects which are for a particular ...
0
votes
2answers
259 views

Raise custom event in multi-project

it concerns following: I have two projects which should exists more or less independently from each other. Project one is a kind File System Watcher. The other one cosnists of my UI. The file watcher ...
5
votes
1answer
3k views

How to assemble a multi-project ant build system

At my new gig, they use Ant and cannot be persuaded to move to Maven. I've looked everywhere for a decent example of how a multi-project ant build system should be assembled. The apache site falls ...

1 2