Equivalence camunda with other archetype

hello, i would like to know something.
I’l using camunda with eclipse make a program that opens a new browser with a specific url (amazon, facebook , …) and try to login. I found a program that supposly can do it but it use other maven archetype I think.
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

and somewhere in the code there is

Document doc = Jsoup.parse(html);
Element loginform = doc.getElementByld(“gaia_loginform”);
Elements inputElements = loginform.getElementsByTag(“input”);

it shows me errors : documents can be changed to deployement and element to elementBuffer or more. So is it an equivalence or is it totally something else ?

thanks