How to express this objective function in CVX with GP mode

How do I express the objective function given in the form below

maximize exp(s_1p_1+s_2p_2+...+s_Tp_T)

Here, p are constants

It is in the form of geometric programming. There I use CVX in GP mode.

For example,

cvx_begin gp

variable s(T)

maximize (?)

subject to

cvx_end